Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_document_DoubleRange_H
#define org_apache_lucene_document_DoubleRange_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 DoubleRange : public ::org::apache::lucene::document::Field {
public:
enum {
mid_init$_bb45ccd0345e3087,
mid_getMax_cdb19d58cf15e977,
mid_getMin_cdb19d58cf15e977,
mid_newContainsQuery_2c521a7e92d9f4af,
mid_newCrossesQuery_2c521a7e92d9f4af,
mid_newIntersectsQuery_2c521a7e92d9f4af,
mid_newWithinQuery_2c521a7e92d9f4af,
mid_setRangeValues_aa8a291ddb187905,
mid_toString_a6d454b6117bc1ba,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit DoubleRange(jobject obj) : ::org::apache::lucene::document::Field(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
DoubleRange(const DoubleRange& obj) : ::org::apache::lucene::document::Field(obj) {}
static jint BYTES;
DoubleRange(const ::java::lang::String &, const JArray< jdouble > &, const JArray< jdouble > &);
jdouble getMax(jint) const;
jdouble getMin(jint) const;
static ::org::apache::lucene::search::Query newContainsQuery(const ::java::lang::String &, const JArray< jdouble > &, const JArray< jdouble > &);
static ::org::apache::lucene::search::Query newCrossesQuery(const ::java::lang::String &, const JArray< jdouble > &, const JArray< jdouble > &);
static ::org::apache::lucene::search::Query newIntersectsQuery(const ::java::lang::String &, const JArray< jdouble > &, const JArray< jdouble > &);
static ::org::apache::lucene::search::Query newWithinQuery(const ::java::lang::String &, const JArray< jdouble > &, const JArray< jdouble > &);
void setRangeValues(const JArray< jdouble > &, const JArray< jdouble > &) const;
::java::lang::String toString() const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace document {
extern PyType_Def PY_TYPE_DEF(DoubleRange);
extern PyTypeObject *PY_TYPE(DoubleRange);
class t_DoubleRange {
public:
PyObject_HEAD
DoubleRange object;
static PyObject *wrap_Object(const DoubleRange&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif