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 / FloatRange.h
Size: Mime:
#ifndef org_apache_lucene_document_FloatRange_H
#define org_apache_lucene_document_FloatRange_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;
      }
    }
  }
}
template<class T> class JArray;

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

        class FloatRange : public ::org::apache::lucene::document::Field {
         public:
          enum {
            mid_init$_83cec35a263397b6,
            mid_getMax_b8eaefe895df76a4,
            mid_getMin_b8eaefe895df76a4,
            mid_newContainsQuery_cca563369885a8f0,
            mid_newCrossesQuery_cca563369885a8f0,
            mid_newIntersectsQuery_cca563369885a8f0,
            mid_newWithinQuery_cca563369885a8f0,
            mid_setRangeValues_7877dcb9c9de9dbf,
            mid_toString_a6d454b6117bc1ba,
            max_mid
          };

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

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

          static jint BYTES;

          FloatRange(const ::java::lang::String &, const JArray< jfloat > &, const JArray< jfloat > &);

          jfloat getMax(jint) const;
          jfloat getMin(jint) const;
          static ::org::apache::lucene::search::Query newContainsQuery(const ::java::lang::String &, const JArray< jfloat > &, const JArray< jfloat > &);
          static ::org::apache::lucene::search::Query newCrossesQuery(const ::java::lang::String &, const JArray< jfloat > &, const JArray< jfloat > &);
          static ::org::apache::lucene::search::Query newIntersectsQuery(const ::java::lang::String &, const JArray< jfloat > &, const JArray< jfloat > &);
          static ::org::apache::lucene::search::Query newWithinQuery(const ::java::lang::String &, const JArray< jfloat > &, const JArray< jfloat > &);
          void setRangeValues(const JArray< jfloat > &, const JArray< jfloat > &) const;
          ::java::lang::String toString() const;
        };
      }
    }
  }
}

#include <Python.h>

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

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

#endif