Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_util_IntsRef_H
#define org_apache_lucene_util_IntsRef_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class String;
class Class;
class Comparable;
class Cloneable;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace util {
class IntsRef;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace util {
class IntsRef : public ::java::lang::Object {
public:
enum {
mid_init$_d7775b228e076e62,
mid_init$_54889bef30791899,
mid_init$_9777a7f2ffebba16,
mid_clone_53972b0b6b1a57cd,
mid_compareTo_63ed7667da3de53e,
mid_deepCopyOf_4cb07ee407f8bbc8,
mid_equals_ac708f0101821708,
mid_hashCode_9135e6328d9d7dfd,
mid_intsEquals_c2999cd16d3c537c,
mid_isValid_c20c2fcd6b89d9a9,
mid_toString_a6d454b6117bc1ba,
max_mid
};
enum {
fid_ints,
fid_length,
fid_offset,
max_fid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static jfieldID *fids$;
static bool live$;
static jclass initializeClass(bool);
explicit IntsRef(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
IntsRef(const IntsRef& obj) : ::java::lang::Object(obj) {}
static JArray< jint > *EMPTY_INTS;
JArray< jint > _get_ints() const;
void _set_ints(const JArray< jint > &) const;
jint _get_length() const;
void _set_length(jint) const;
jint _get_offset() const;
void _set_offset(jint) const;
IntsRef();
IntsRef(jint);
IntsRef(const JArray< jint > &, jint, jint);
IntsRef clone() const;
jint compareTo(const IntsRef &) const;
static IntsRef deepCopyOf(const IntsRef &);
jboolean equals(const ::java::lang::Object &) const;
jint hashCode() const;
jboolean intsEquals(const IntsRef &) const;
jboolean isValid() const;
::java::lang::String toString() const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace util {
extern PyType_Def PY_TYPE_DEF(IntsRef);
extern PyTypeObject *PY_TYPE(IntsRef);
class t_IntsRef {
public:
PyObject_HEAD
IntsRef object;
static PyObject *wrap_Object(const IntsRef&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif