Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_search_RegexpQuery_H
#define org_apache_lucene_search_RegexpQuery_H
#include "org/apache/lucene/search/AutomatonQuery.h"
namespace java {
namespace lang {
class String;
class Class;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace util {
namespace automaton {
class AutomatonProvider;
}
}
namespace index {
class Term;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace search {
class RegexpQuery : public ::org::apache::lucene::search::AutomatonQuery {
public:
enum {
mid_init$_36f98207de53ae96,
mid_init$_6504d8474b8bc99e,
mid_init$_10da338c95fce197,
mid_init$_4a8c5aeac3a5e0d2,
mid_getRegexp_8f857151e66a564e,
mid_toString_b6b89aa915f3be5f,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit RegexpQuery(jobject obj) : ::org::apache::lucene::search::AutomatonQuery(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
RegexpQuery(const RegexpQuery& obj) : ::org::apache::lucene::search::AutomatonQuery(obj) {}
RegexpQuery(const ::org::apache::lucene::index::Term &);
RegexpQuery(const ::org::apache::lucene::index::Term &, jint);
RegexpQuery(const ::org::apache::lucene::index::Term &, jint, jint);
RegexpQuery(const ::org::apache::lucene::index::Term &, jint, const ::org::apache::lucene::util::automaton::AutomatonProvider &, jint);
::org::apache::lucene::index::Term getRegexp() const;
::java::lang::String toString(const ::java::lang::String &) const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace search {
extern PyType_Def PY_TYPE_DEF(RegexpQuery);
extern PyTypeObject *PY_TYPE(RegexpQuery);
class t_RegexpQuery {
public:
PyObject_HEAD
RegexpQuery object;
static PyObject *wrap_Object(const RegexpQuery&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif