Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_codecs_memory_FSTPostingsFormat_H
#define org_apache_lucene_codecs_memory_FSTPostingsFormat_H
#include "org/apache/lucene/codecs/PostingsFormat.h"
namespace org {
namespace apache {
namespace lucene {
namespace index {
class SegmentReadState;
class SegmentWriteState;
}
namespace codecs {
class FieldsProducer;
class FieldsConsumer;
}
}
}
}
namespace java {
namespace lang {
class String;
class Class;
}
namespace io {
class IOException;
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace codecs {
namespace memory {
class FSTPostingsFormat : public ::org::apache::lucene::codecs::PostingsFormat {
public:
enum {
mid_init$_d7775b228e076e62,
mid_fieldsConsumer_40ff4c16eb2f2120,
mid_fieldsProducer_6e8edd99a0469dda,
mid_toString_a6d454b6117bc1ba,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit FSTPostingsFormat(jobject obj) : ::org::apache::lucene::codecs::PostingsFormat(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
FSTPostingsFormat(const FSTPostingsFormat& obj) : ::org::apache::lucene::codecs::PostingsFormat(obj) {}
FSTPostingsFormat();
::org::apache::lucene::codecs::FieldsConsumer fieldsConsumer(const ::org::apache::lucene::index::SegmentWriteState &) const;
::org::apache::lucene::codecs::FieldsProducer fieldsProducer(const ::org::apache::lucene::index::SegmentReadState &) const;
::java::lang::String toString() const;
};
}
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace codecs {
namespace memory {
extern PyType_Def PY_TYPE_DEF(FSTPostingsFormat);
extern PyTypeObject *PY_TYPE(FSTPostingsFormat);
class t_FSTPostingsFormat {
public:
PyObject_HEAD
FSTPostingsFormat object;
static PyObject *wrap_Object(const FSTPostingsFormat&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
}
#endif