Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_util_LongsRef_H
#define org_apache_lucene_util_LongsRef_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 LongsRef;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace util {
class LongsRef : public ::java::lang::Object {
public:
enum {
mid_init$_d7775b228e076e62,
mid_init$_54889bef30791899,
mid_init$_fee8dd5e283b6818,
mid_clone_914f3cddb80b4047,
mid_compareTo_7d35a8b7f53e934b,
mid_deepCopyOf_07c3ef7d7092fdee,
mid_equals_ac708f0101821708,
mid_hashCode_9135e6328d9d7dfd,
mid_isValid_c20c2fcd6b89d9a9,
mid_longsEquals_8891c3fda265d681,
mid_toString_a6d454b6117bc1ba,
max_mid
};
enum {
fid_length,
fid_longs,
fid_offset,
max_fid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static jfieldID *fids$;
static bool live$;
static jclass initializeClass(bool);
explicit LongsRef(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
LongsRef(const LongsRef& obj) : ::java::lang::Object(obj) {}
static JArray< jlong > *EMPTY_LONGS;
jint _get_length() const;
void _set_length(jint) const;
JArray< jlong > _get_longs() const;
void _set_longs(const JArray< jlong > &) const;
jint _get_offset() const;
void _set_offset(jint) const;
LongsRef();
LongsRef(jint);
LongsRef(const JArray< jlong > &, jint, jint);
LongsRef clone() const;
jint compareTo(const LongsRef &) const;
static LongsRef deepCopyOf(const LongsRef &);
jboolean equals(const ::java::lang::Object &) const;
jint hashCode() const;
jboolean isValid() const;
jboolean longsEquals(const LongsRef &) const;
::java::lang::String toString() const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace util {
extern PyType_Def PY_TYPE_DEF(LongsRef);
extern PyTypeObject *PY_TYPE(LongsRef);
class t_LongsRef {
public:
PyObject_HEAD
LongsRef object;
static PyObject *wrap_Object(const LongsRef&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif