Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_search_DisiPriorityQueue_H
#define org_apache_lucene_search_DisiPriorityQueue_H
#include "java/lang/Object.h"
namespace org {
namespace apache {
namespace lucene {
namespace search {
class DisiWrapper;
}
}
}
}
namespace java {
namespace lang {
class Iterable;
class Class;
}
namespace util {
class Iterator;
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace search {
class DisiPriorityQueue : public ::java::lang::Object {
public:
enum {
mid_init$_54889bef30791899,
mid_add_b869354e84788261,
mid_iterator_1b087b0cc2db38d4,
mid_pop_9b9050ed39e0c135,
mid_size_9135e6328d9d7dfd,
mid_top_9b9050ed39e0c135,
mid_topList_9b9050ed39e0c135,
mid_updateTop_9b9050ed39e0c135,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit DisiPriorityQueue(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
DisiPriorityQueue(const DisiPriorityQueue& obj) : ::java::lang::Object(obj) {}
DisiPriorityQueue(jint);
::org::apache::lucene::search::DisiWrapper add(const ::org::apache::lucene::search::DisiWrapper &) const;
::java::util::Iterator iterator() const;
::org::apache::lucene::search::DisiWrapper pop() const;
jint size() const;
::org::apache::lucene::search::DisiWrapper top() const;
::org::apache::lucene::search::DisiWrapper topList() const;
::org::apache::lucene::search::DisiWrapper updateTop() const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace search {
extern PyType_Def PY_TYPE_DEF(DisiPriorityQueue);
extern PyTypeObject *PY_TYPE(DisiPriorityQueue);
class t_DisiPriorityQueue {
public:
PyObject_HEAD
DisiPriorityQueue object;
static PyObject *wrap_Object(const DisiPriorityQueue&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif