Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_search_intervals_IntervalsSource_H
#define org_apache_lucene_search_intervals_IntervalsSource_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class String;
class Class;
}
namespace util {
class Set;
}
namespace io {
class IOException;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace search {
namespace intervals {
class IntervalIterator;
}
class MatchesIterator;
}
namespace index {
class Term;
class LeafReaderContext;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace search {
namespace intervals {
class IntervalsSource : public ::java::lang::Object {
public:
enum {
mid_init$_d7775b228e076e62,
mid_equals_ac708f0101821708,
mid_extractTerms_08b40a4b423a8926,
mid_hashCode_9135e6328d9d7dfd,
mid_intervals_867755edee6bd192,
mid_matches_788e20cfba193be8,
mid_toString_a6d454b6117bc1ba,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit IntervalsSource(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
IntervalsSource(const IntervalsSource& obj) : ::java::lang::Object(obj) {}
IntervalsSource();
jboolean equals(const ::java::lang::Object &) const;
void extractTerms(const ::java::lang::String &, const ::java::util::Set &) const;
jint hashCode() const;
::org::apache::lucene::search::intervals::IntervalIterator intervals(const ::java::lang::String &, const ::org::apache::lucene::index::LeafReaderContext &) const;
::org::apache::lucene::search::MatchesIterator matches(const ::java::lang::String &, const ::org::apache::lucene::index::LeafReaderContext &, jint) const;
::java::lang::String toString() const;
};
}
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace search {
namespace intervals {
extern PyType_Def PY_TYPE_DEF(IntervalsSource);
extern PyTypeObject *PY_TYPE(IntervalsSource);
class t_IntervalsSource {
public:
PyObject_HEAD
IntervalsSource object;
static PyObject *wrap_Object(const IntervalsSource&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
}
#endif