Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_codecs_DocValuesConsumer_H
#define org_apache_lucene_codecs_DocValuesConsumer_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class Iterable;
class Class;
class Number;
}
namespace io {
class IOException;
class Closeable;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace index {
class MergeState;
class FieldInfo;
}
namespace codecs {
class DocValuesProducer;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace codecs {
class DocValuesConsumer : public ::java::lang::Object {
public:
enum {
mid_addBinaryField_b94a611a7879dfdf,
mid_addNumericField_b94a611a7879dfdf,
mid_addSortedField_b94a611a7879dfdf,
mid_addSortedNumericField_b94a611a7879dfdf,
mid_addSortedSetField_b94a611a7879dfdf,
mid_isSingleValued_dd40bc3762d50519,
mid_merge_56bbbcbab40e765d,
mid_mergeBinaryField_a3bcbd276806f4b7,
mid_mergeNumericField_a3bcbd276806f4b7,
mid_mergeSortedField_a3bcbd276806f4b7,
mid_mergeSortedNumericField_a3bcbd276806f4b7,
mid_mergeSortedSetField_a3bcbd276806f4b7,
mid_singletonView_33e68c0c8a63dd46,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit DocValuesConsumer(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
DocValuesConsumer(const DocValuesConsumer& obj) : ::java::lang::Object(obj) {}
void addBinaryField(const ::org::apache::lucene::index::FieldInfo &, const ::org::apache::lucene::codecs::DocValuesProducer &) const;
void addNumericField(const ::org::apache::lucene::index::FieldInfo &, const ::org::apache::lucene::codecs::DocValuesProducer &) const;
void addSortedField(const ::org::apache::lucene::index::FieldInfo &, const ::org::apache::lucene::codecs::DocValuesProducer &) const;
void addSortedNumericField(const ::org::apache::lucene::index::FieldInfo &, const ::org::apache::lucene::codecs::DocValuesProducer &) const;
void addSortedSetField(const ::org::apache::lucene::index::FieldInfo &, const ::org::apache::lucene::codecs::DocValuesProducer &) const;
static jboolean isSingleValued(const ::java::lang::Iterable &);
void merge(const ::org::apache::lucene::index::MergeState &) const;
void mergeBinaryField(const ::org::apache::lucene::index::FieldInfo &, const ::org::apache::lucene::index::MergeState &) const;
void mergeNumericField(const ::org::apache::lucene::index::FieldInfo &, const ::org::apache::lucene::index::MergeState &) const;
void mergeSortedField(const ::org::apache::lucene::index::FieldInfo &, const ::org::apache::lucene::index::MergeState &) const;
void mergeSortedNumericField(const ::org::apache::lucene::index::FieldInfo &, const ::org::apache::lucene::index::MergeState &) const;
void mergeSortedSetField(const ::org::apache::lucene::index::FieldInfo &, const ::org::apache::lucene::index::MergeState &) const;
static ::java::lang::Iterable singletonView(const ::java::lang::Iterable &, const ::java::lang::Iterable &, const ::java::lang::Number &);
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace codecs {
extern PyType_Def PY_TYPE_DEF(DocValuesConsumer);
extern PyTypeObject *PY_TYPE(DocValuesConsumer);
class t_DocValuesConsumer {
public:
PyObject_HEAD
DocValuesConsumer object;
static PyObject *wrap_Object(const DocValuesConsumer&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif