Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_util_mutable_MutableValue_H
#define org_apache_lucene_util_mutable_MutableValue_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class String;
class Class;
class Comparable;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace util {
namespace mutable$ {
class MutableValue;
}
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace util {
namespace mutable$ {
class MutableValue : public ::java::lang::Object {
public:
enum {
mid_init$_d7775b228e076e62,
mid_compareSameType_e27d8db6ab511775,
mid_compareTo_4e825fc882417d5f,
mid_copy_d6f6a4a7ba8c1d63,
mid_duplicate_8dc6733824257161,
mid_equals_ac708f0101821708,
mid_equalsSameType_ac708f0101821708,
mid_exists_c20c2fcd6b89d9a9,
mid_hashCode_9135e6328d9d7dfd,
mid_toObject_59eb473b04cd17bc,
mid_toString_a6d454b6117bc1ba,
max_mid
};
enum {
fid_exists,
max_fid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static jfieldID *fids$;
static bool live$;
static jclass initializeClass(bool);
explicit MutableValue(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
MutableValue(const MutableValue& obj) : ::java::lang::Object(obj) {}
jboolean _get_exists() const;
void _set_exists(jboolean) const;
MutableValue();
jint compareSameType(const ::java::lang::Object &) const;
jint compareTo(const MutableValue &) const;
void copy(const MutableValue &) const;
MutableValue duplicate() const;
jboolean equals(const ::java::lang::Object &) const;
jboolean equalsSameType(const ::java::lang::Object &) const;
jboolean exists() const;
jint hashCode() const;
::java::lang::Object toObject() const;
::java::lang::String toString() const;
};
}
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace util {
namespace mutable$ {
extern PyType_Def PY_TYPE_DEF(MutableValue);
extern PyTypeObject *PY_TYPE(MutableValue);
class t_MutableValue {
public:
PyObject_HEAD
MutableValue object;
static PyObject *wrap_Object(const MutableValue&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
}
#endif