Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_codecs_DocValuesFormat_H
#define org_apache_lucene_codecs_DocValuesFormat_H
#include "java/lang/Object.h"
namespace org {
namespace apache {
namespace lucene {
namespace index {
class SegmentReadState;
class SegmentWriteState;
}
namespace codecs {
class DocValuesConsumer;
class DocValuesFormat;
class DocValuesProducer;
}
namespace util {
class NamedSPILoader$NamedSPI;
}
}
}
}
namespace java {
namespace lang {
class String;
class Class;
class ClassLoader;
}
namespace util {
class Set;
}
namespace io {
class IOException;
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace codecs {
class DocValuesFormat : public ::java::lang::Object {
public:
enum {
mid_availableDocValuesFormats_0f146b3deb900c94,
mid_fieldsConsumer_1e47d0393d2dc84b,
mid_fieldsProducer_5db6ca5206e54244,
mid_forName_056120fde54b1796,
mid_getName_a6d454b6117bc1ba,
mid_reloadDocValuesFormats_230da0363a6f95d6,
mid_toString_a6d454b6117bc1ba,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit DocValuesFormat(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
DocValuesFormat(const DocValuesFormat& obj) : ::java::lang::Object(obj) {}
static ::java::util::Set availableDocValuesFormats();
::org::apache::lucene::codecs::DocValuesConsumer fieldsConsumer(const ::org::apache::lucene::index::SegmentWriteState &) const;
::org::apache::lucene::codecs::DocValuesProducer fieldsProducer(const ::org::apache::lucene::index::SegmentReadState &) const;
static DocValuesFormat forName(const ::java::lang::String &);
::java::lang::String getName() const;
static void reloadDocValuesFormats(const ::java::lang::ClassLoader &);
::java::lang::String toString() const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace codecs {
extern PyType_Def PY_TYPE_DEF(DocValuesFormat);
extern PyTypeObject *PY_TYPE(DocValuesFormat);
class t_DocValuesFormat {
public:
PyObject_HEAD
DocValuesFormat object;
static PyObject *wrap_Object(const DocValuesFormat&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif