Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_util_automaton_RunAutomaton_H
#define org_apache_lucene_util_automaton_RunAutomaton_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class String;
class Class;
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace util {
namespace automaton {
class RunAutomaton : public ::java::lang::Object {
public:
enum {
mid_equals_ac708f0101821708,
mid_getCharIntervals_ec3af30270431d24,
mid_getSize_9135e6328d9d7dfd,
mid_hashCode_9135e6328d9d7dfd,
mid_isAccept_b9777742cbbb5232,
mid_step_8911bf18e41c2ffc,
mid_toString_a6d454b6117bc1ba,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit RunAutomaton(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
RunAutomaton(const RunAutomaton& obj) : ::java::lang::Object(obj) {}
jboolean equals(const ::java::lang::Object &) const;
JArray< jint > getCharIntervals() const;
jint getSize() const;
jint hashCode() const;
jboolean isAccept(jint) const;
jint step(jint, jint) const;
::java::lang::String toString() const;
};
}
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace util {
namespace automaton {
extern PyType_Def PY_TYPE_DEF(RunAutomaton);
extern PyTypeObject *PY_TYPE(RunAutomaton);
class t_RunAutomaton {
public:
PyObject_HEAD
RunAutomaton object;
static PyObject *wrap_Object(const RunAutomaton&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
}
#endif