Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_search_MatchAllDocsQuery_H
#define org_apache_lucene_search_MatchAllDocsQuery_H
#include "org/apache/lucene/search/Query.h"
namespace org {
namespace apache {
namespace lucene {
namespace search {
class IndexSearcher;
class Weight;
}
}
}
}
namespace java {
namespace lang {
class String;
class Class;
class Object;
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace search {
class MatchAllDocsQuery : public ::org::apache::lucene::search::Query {
public:
enum {
mid_init$_d7775b228e076e62,
mid_createWeight_68609b1af132dcdc,
mid_equals_ac708f0101821708,
mid_hashCode_9135e6328d9d7dfd,
mid_toString_b6b89aa915f3be5f,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit MatchAllDocsQuery(jobject obj) : ::org::apache::lucene::search::Query(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
MatchAllDocsQuery(const MatchAllDocsQuery& obj) : ::org::apache::lucene::search::Query(obj) {}
MatchAllDocsQuery();
::org::apache::lucene::search::Weight createWeight(const ::org::apache::lucene::search::IndexSearcher &, jboolean, jfloat) const;
jboolean equals(const ::java::lang::Object &) const;
jint hashCode() 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(MatchAllDocsQuery);
extern PyTypeObject *PY_TYPE(MatchAllDocsQuery);
class t_MatchAllDocsQuery {
public:
PyObject_HEAD
MatchAllDocsQuery object;
static PyObject *wrap_Object(const MatchAllDocsQuery&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif