Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_index_DocValues_H
#define org_apache_lucene_index_DocValues_H
#include "java/lang/Object.h"
namespace org {
namespace apache {
namespace lucene {
namespace index {
class SortedDocValues;
class LeafReader;
class BinaryDocValues;
class SortedNumericDocValues;
class SortedSetDocValues;
class LegacySortedDocValues;
class LeafReaderContext;
class NumericDocValues;
}
}
}
}
namespace java {
namespace lang {
class Class;
class String;
}
namespace io {
class IOException;
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace index {
class DocValues : public ::java::lang::Object {
public:
enum {
mid_emptyBinary_84d94c3826c6bc4b,
mid_emptyLegacySorted_31dd7d8760236bb4,
mid_emptyNumeric_50e13f58cd608ca4,
mid_emptySorted_a211886477bafdbe,
mid_emptySortedNumeric_8326489c756803eb,
mid_emptySortedSet_0343d94040b2b63d,
mid_getBinary_58917acfb9bbe0ed,
mid_getNumeric_5454794564e032bb,
mid_getSorted_824d10259a980853,
mid_getSortedNumeric_6b95a94a08edf15d,
mid_getSortedSet_8a832b43db1fc781,
mid_isCacheable_1402c220fa10d4fb,
mid_singleton_cea680bb1abaa8b4,
mid_singleton_eb8b4bb77b134c8d,
mid_unwrapSingleton_092f879cd4bb518f,
mid_unwrapSingleton_0b618f206412200e,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit DocValues(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
DocValues(const DocValues& obj) : ::java::lang::Object(obj) {}
static ::org::apache::lucene::index::BinaryDocValues emptyBinary();
static ::org::apache::lucene::index::LegacySortedDocValues emptyLegacySorted();
static ::org::apache::lucene::index::NumericDocValues emptyNumeric();
static ::org::apache::lucene::index::SortedDocValues emptySorted();
static ::org::apache::lucene::index::SortedNumericDocValues emptySortedNumeric(jint);
static ::org::apache::lucene::index::SortedSetDocValues emptySortedSet();
static ::org::apache::lucene::index::BinaryDocValues getBinary(const ::org::apache::lucene::index::LeafReader &, const ::java::lang::String &);
static ::org::apache::lucene::index::NumericDocValues getNumeric(const ::org::apache::lucene::index::LeafReader &, const ::java::lang::String &);
static ::org::apache::lucene::index::SortedDocValues getSorted(const ::org::apache::lucene::index::LeafReader &, const ::java::lang::String &);
static ::org::apache::lucene::index::SortedNumericDocValues getSortedNumeric(const ::org::apache::lucene::index::LeafReader &, const ::java::lang::String &);
static ::org::apache::lucene::index::SortedSetDocValues getSortedSet(const ::org::apache::lucene::index::LeafReader &, const ::java::lang::String &);
static jboolean isCacheable(const ::org::apache::lucene::index::LeafReaderContext &, const JArray< ::java::lang::String > &);
static ::org::apache::lucene::index::SortedNumericDocValues singleton(const ::org::apache::lucene::index::NumericDocValues &);
static ::org::apache::lucene::index::SortedSetDocValues singleton(const ::org::apache::lucene::index::SortedDocValues &);
static ::org::apache::lucene::index::NumericDocValues unwrapSingleton(const ::org::apache::lucene::index::SortedNumericDocValues &);
static ::org::apache::lucene::index::SortedDocValues unwrapSingleton(const ::org::apache::lucene::index::SortedSetDocValues &);
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace index {
extern PyType_Def PY_TYPE_DEF(DocValues);
extern PyTypeObject *PY_TYPE(DocValues);
class t_DocValues {
public:
PyObject_HEAD
DocValues object;
static PyObject *wrap_Object(const DocValues&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif