Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_codecs_PushPostingsWriterBase_H
#define org_apache_lucene_codecs_PushPostingsWriterBase_H
#include "org/apache/lucene/codecs/PostingsWriterBase.h"
namespace java {
namespace lang {
class Class;
}
namespace io {
class IOException;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace index {
class TermsEnum;
class FieldInfo;
}
namespace util {
class BytesRef;
class FixedBitSet;
}
namespace codecs {
class BlockTermState;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace codecs {
class PushPostingsWriterBase : public ::org::apache::lucene::codecs::PostingsWriterBase {
public:
enum {
mid_addPosition_c4edc21c7cb953af,
mid_finishDoc_d7775b228e076e62,
mid_finishTerm_abdc91a6a92c6fb2,
mid_newTermState_cb7efab9cf793d9a,
mid_setField_761bb8de83ad3af0,
mid_startDoc_3addb8559d77fc6e,
mid_startTerm_d7775b228e076e62,
mid_writeTerm_86a44919177923ff,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit PushPostingsWriterBase(jobject obj) : ::org::apache::lucene::codecs::PostingsWriterBase(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
PushPostingsWriterBase(const PushPostingsWriterBase& obj) : ::org::apache::lucene::codecs::PostingsWriterBase(obj) {}
void addPosition(jint, const ::org::apache::lucene::util::BytesRef &, jint, jint) const;
void finishDoc() const;
void finishTerm(const ::org::apache::lucene::codecs::BlockTermState &) const;
::org::apache::lucene::codecs::BlockTermState newTermState() const;
jint setField(const ::org::apache::lucene::index::FieldInfo &) const;
void startDoc(jint, jint) const;
void startTerm() const;
::org::apache::lucene::codecs::BlockTermState writeTerm(const ::org::apache::lucene::util::BytesRef &, const ::org::apache::lucene::index::TermsEnum &, const ::org::apache::lucene::util::FixedBitSet &) const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace codecs {
extern PyType_Def PY_TYPE_DEF(PushPostingsWriterBase);
extern PyTypeObject *PY_TYPE(PushPostingsWriterBase);
class t_PushPostingsWriterBase {
public:
PyObject_HEAD
PushPostingsWriterBase object;
static PyObject *wrap_Object(const PushPostingsWriterBase&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif