Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_index_EmptyDocValuesProducer_H
#define org_apache_lucene_index_EmptyDocValuesProducer_H
#include "org/apache/lucene/codecs/DocValuesProducer.h"
namespace org {
namespace apache {
namespace lucene {
namespace index {
class SortedDocValues;
class BinaryDocValues;
class FieldInfo;
class SortedNumericDocValues;
class SortedSetDocValues;
class NumericDocValues;
}
}
}
}
namespace java {
namespace lang {
class Class;
}
namespace io {
class IOException;
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace index {
class EmptyDocValuesProducer : public ::org::apache::lucene::codecs::DocValuesProducer {
public:
enum {
mid_checkIntegrity_d7775b228e076e62,
mid_close_d7775b228e076e62,
mid_getBinary_34a761dd5f2d1dc5,
mid_getNumeric_2b8bc02eed1f5e73,
mid_getSorted_196b8e43a92a0fd9,
mid_getSortedNumeric_204d82575acbb5f1,
mid_getSortedSet_45d25612ac5abfbb,
mid_ramBytesUsed_062ad918b5794303,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit EmptyDocValuesProducer(jobject obj) : ::org::apache::lucene::codecs::DocValuesProducer(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
EmptyDocValuesProducer(const EmptyDocValuesProducer& obj) : ::org::apache::lucene::codecs::DocValuesProducer(obj) {}
void checkIntegrity() const;
void close() const;
::org::apache::lucene::index::BinaryDocValues getBinary(const ::org::apache::lucene::index::FieldInfo &) const;
::org::apache::lucene::index::NumericDocValues getNumeric(const ::org::apache::lucene::index::FieldInfo &) const;
::org::apache::lucene::index::SortedDocValues getSorted(const ::org::apache::lucene::index::FieldInfo &) const;
::org::apache::lucene::index::SortedNumericDocValues getSortedNumeric(const ::org::apache::lucene::index::FieldInfo &) const;
::org::apache::lucene::index::SortedSetDocValues getSortedSet(const ::org::apache::lucene::index::FieldInfo &) const;
jlong ramBytesUsed() const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace index {
extern PyType_Def PY_TYPE_DEF(EmptyDocValuesProducer);
extern PyTypeObject *PY_TYPE(EmptyDocValuesProducer);
class t_EmptyDocValuesProducer {
public:
PyObject_HEAD
EmptyDocValuesProducer object;
static PyObject *wrap_Object(const EmptyDocValuesProducer&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif