Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_index_PointValues_H
#define org_apache_lucene_index_PointValues_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class String;
class Class;
}
namespace io {
class IOException;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace index {
class PointValues$IntersectVisitor;
class IndexReader;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace index {
class PointValues : public ::java::lang::Object {
public:
enum {
mid_estimatePointCount_81defcf6a1e976e0,
mid_getBytesPerDimension_9135e6328d9d7dfd,
mid_getDocCount_9135e6328d9d7dfd,
mid_getDocCount_a7f747d6c4c36780,
mid_getMaxPackedValue_7e7da87ae816e9d4,
mid_getMaxPackedValue_af0f606e8c3d061d,
mid_getMinPackedValue_7e7da87ae816e9d4,
mid_getMinPackedValue_af0f606e8c3d061d,
mid_getNumDataDimensions_9135e6328d9d7dfd,
mid_getNumIndexDimensions_9135e6328d9d7dfd,
mid_intersect_1a47f6fd22566fdf,
mid_size_062ad918b5794303,
mid_size_9d0bd4d02265541f,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit PointValues(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
PointValues(const PointValues& obj) : ::java::lang::Object(obj) {}
static jint MAX_DIMENSIONS;
static jint MAX_NUM_BYTES;
jlong estimatePointCount(const ::org::apache::lucene::index::PointValues$IntersectVisitor &) const;
jint getBytesPerDimension() const;
jint getDocCount() const;
static jint getDocCount(const ::org::apache::lucene::index::IndexReader &, const ::java::lang::String &);
JArray< jbyte > getMaxPackedValue() const;
static JArray< jbyte > getMaxPackedValue(const ::org::apache::lucene::index::IndexReader &, const ::java::lang::String &);
JArray< jbyte > getMinPackedValue() const;
static JArray< jbyte > getMinPackedValue(const ::org::apache::lucene::index::IndexReader &, const ::java::lang::String &);
jint getNumDataDimensions() const;
jint getNumIndexDimensions() const;
void intersect(const ::org::apache::lucene::index::PointValues$IntersectVisitor &) const;
jlong size() const;
static jlong size(const ::org::apache::lucene::index::IndexReader &, const ::java::lang::String &);
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace index {
extern PyType_Def PY_TYPE_DEF(PointValues);
extern PyTypeObject *PY_TYPE(PointValues);
class t_PointValues {
public:
PyObject_HEAD
PointValues object;
static PyObject *wrap_Object(const PointValues&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif