Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lucene / include / org / apache / lucene / document / BinaryPoint.h
Size: Mime:
#ifndef org_apache_lucene_document_BinaryPoint_H
#define org_apache_lucene_document_BinaryPoint_H

#include "org/apache/lucene/document/Field.h"

namespace java {
  namespace lang {
    class String;
    class Class;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace search {
        class Query;
      }
      namespace index {
        class IndexableFieldType;
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace document {

        class BinaryPoint : public ::org::apache::lucene::document::Field {
         public:
          enum {
            mid_init$_f2c9de6e445a9e26,
            mid_init$_b0b7ba487424c71a,
            mid_newExactQuery_4eb2f87619a4c53b,
            mid_newRangeQuery_4716197ac4376dbe,
            mid_newRangeQuery_173ad8c87273b3f4,
            mid_newSetQuery_8530cae53894a7bd,
            max_mid
          };

          static ::java::lang::Class *class$;
          static jmethodID *mids$;
          static bool live$;
          static jclass initializeClass(bool);

          explicit BinaryPoint(jobject obj) : ::org::apache::lucene::document::Field(obj) {
            if (obj != NULL && mids$ == NULL)
              env->getClass(initializeClass);
          }
          BinaryPoint(const BinaryPoint& obj) : ::org::apache::lucene::document::Field(obj) {}

          BinaryPoint(const ::java::lang::String &, const JArray< JArray< jbyte > > &);
          BinaryPoint(const ::java::lang::String &, const JArray< jbyte > &, const ::org::apache::lucene::index::IndexableFieldType &);

          static ::org::apache::lucene::search::Query newExactQuery(const ::java::lang::String &, const JArray< jbyte > &);
          static ::org::apache::lucene::search::Query newRangeQuery(const ::java::lang::String &, const JArray< JArray< jbyte > > &, const JArray< JArray< jbyte > > &);
          static ::org::apache::lucene::search::Query newRangeQuery(const ::java::lang::String &, const JArray< jbyte > &, const JArray< jbyte > &);
          static ::org::apache::lucene::search::Query newSetQuery(const ::java::lang::String &, const JArray< JArray< jbyte > > &);
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace document {
        extern PyType_Def PY_TYPE_DEF(BinaryPoint);
        extern PyTypeObject *PY_TYPE(BinaryPoint);

        class t_BinaryPoint {
        public:
          PyObject_HEAD
          BinaryPoint object;
          static PyObject *wrap_Object(const BinaryPoint&);
          static PyObject *wrap_jobject(const jobject&);
          static void install(PyObject *module);
          static void initialize(PyObject *module);
        };
      }
    }
  }
}

#endif