Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_search_PointInSetQuery_H
#define org_apache_lucene_search_PointInSetQuery_H
#include "org/apache/lucene/search/Query.h"
namespace java {
namespace lang {
class String;
class Class;
class Object;
}
namespace io {
class IOException;
}
namespace util {
class Collection;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace search {
class IndexSearcher;
class Weight;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace search {
class PointInSetQuery : public ::org::apache::lucene::search::Query {
public:
enum {
mid_createWeight_68609b1af132dcdc,
mid_equals_ac708f0101821708,
mid_getBytesPerDim_9135e6328d9d7dfd,
mid_getField_a6d454b6117bc1ba,
mid_getNumDims_9135e6328d9d7dfd,
mid_getPackedPoints_928c43133c03833e,
mid_hashCode_9135e6328d9d7dfd,
mid_toString_b6b89aa915f3be5f,
mid_toString_1e06178c14608383,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit PointInSetQuery(jobject obj) : ::org::apache::lucene::search::Query(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
PointInSetQuery(const PointInSetQuery& obj) : ::org::apache::lucene::search::Query(obj) {}
::org::apache::lucene::search::Weight createWeight(const ::org::apache::lucene::search::IndexSearcher &, jboolean, jfloat) const;
jboolean equals(const ::java::lang::Object &) const;
jint getBytesPerDim() const;
::java::lang::String getField() const;
jint getNumDims() const;
::java::util::Collection getPackedPoints() const;
jint hashCode() const;
::java::lang::String toString(const ::java::lang::String &) const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace search {
extern PyType_Def PY_TYPE_DEF(PointInSetQuery);
extern PyTypeObject *PY_TYPE(PointInSetQuery);
class t_PointInSetQuery {
public:
PyObject_HEAD
PointInSetQuery object;
static PyObject *wrap_Object(const PointInSetQuery&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif