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 / IntPoint.h
Size: Mime:
#ifndef org_apache_lucene_document_IntPoint_H
#define org_apache_lucene_document_IntPoint_H

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

namespace java {
  namespace lang {
    class String;
    class Class;
    class Integer;
    class Number;
  }
  namespace util {
    class Collection;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        class BytesRef;
      }
      namespace search {
        class Query;
      }
    }
  }
}
template<class T> class JArray;

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

        class IntPoint : public ::org::apache::lucene::document::Field {
         public:
          enum {
            mid_init$_b54b6d43e3a64365,
            mid_decodeDimension_114bd87cc0521d44,
            mid_encodeDimension_c41edfb27ae7d5ec,
            mid_newExactQuery_b2bf9ba39b3d9734,
            mid_newRangeQuery_50778b21b6e99856,
            mid_newRangeQuery_25a11bc946a0649c,
            mid_newSetQuery_5726d5d41f76f4e0,
            mid_newSetQuery_418694c1428c9a9c,
            mid_numericValue_1bfed88e11cf6a79,
            mid_setBytesValue_56afe0077fbf95be,
            mid_setIntValue_54889bef30791899,
            mid_setIntValues_173b3a1499236bae,
            mid_toString_a6d454b6117bc1ba,
            max_mid
          };

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

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

          IntPoint(const ::java::lang::String &, const JArray< jint > &);

          static jint decodeDimension(const JArray< jbyte > &, jint);
          static void encodeDimension(jint, const JArray< jbyte > &, jint);
          static ::org::apache::lucene::search::Query newExactQuery(const ::java::lang::String &, jint);
          static ::org::apache::lucene::search::Query newRangeQuery(const ::java::lang::String &, const JArray< jint > &, const JArray< jint > &);
          static ::org::apache::lucene::search::Query newRangeQuery(const ::java::lang::String &, jint, jint);
          static ::org::apache::lucene::search::Query newSetQuery(const ::java::lang::String &, const ::java::util::Collection &);
          static ::org::apache::lucene::search::Query newSetQuery(const ::java::lang::String &, const JArray< jint > &);
          ::java::lang::Number numericValue() const;
          void setBytesValue(const ::org::apache::lucene::util::BytesRef &) const;
          void setIntValue(jint) const;
          void setIntValues(const JArray< jint > &) const;
          ::java::lang::String toString() const;
        };
      }
    }
  }
}

#include <Python.h>

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

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

#endif