Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_store_ByteArrayDataInput_H
#define org_apache_lucene_store_ByteArrayDataInput_H
#include "org/apache/lucene/store/DataInput.h"
namespace java {
namespace lang {
class Class;
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace store {
class ByteArrayDataInput : public ::org::apache::lucene::store::DataInput {
public:
enum {
mid_init$_d7775b228e076e62,
mid_init$_0fce1b0b1e1dc066,
mid_init$_572579157b228a11,
mid_eof_c20c2fcd6b89d9a9,
mid_getPosition_9135e6328d9d7dfd,
mid_length_9135e6328d9d7dfd,
mid_readByte_e0bb1ed55719c754,
mid_readBytes_572579157b228a11,
mid_readInt_9135e6328d9d7dfd,
mid_readLong_062ad918b5794303,
mid_readShort_410ac1426f0f5ae1,
mid_readVInt_9135e6328d9d7dfd,
mid_readVLong_062ad918b5794303,
mid_reset_0fce1b0b1e1dc066,
mid_reset_572579157b228a11,
mid_rewind_d7775b228e076e62,
mid_setPosition_54889bef30791899,
mid_skipBytes_ea21977c7b14e0c0,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit ByteArrayDataInput(jobject obj) : ::org::apache::lucene::store::DataInput(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
ByteArrayDataInput(const ByteArrayDataInput& obj) : ::org::apache::lucene::store::DataInput(obj) {}
ByteArrayDataInput();
ByteArrayDataInput(const JArray< jbyte > &);
ByteArrayDataInput(const JArray< jbyte > &, jint, jint);
jboolean eof() const;
jint getPosition() const;
jint length() const;
jbyte readByte() const;
void readBytes(const JArray< jbyte > &, jint, jint) const;
jint readInt() const;
jlong readLong() const;
jshort readShort() const;
jint readVInt() const;
jlong readVLong() const;
void reset(const JArray< jbyte > &) const;
void reset(const JArray< jbyte > &, jint, jint) const;
void rewind() const;
void setPosition(jint) const;
void skipBytes(jlong) const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace store {
extern PyType_Def PY_TYPE_DEF(ByteArrayDataInput);
extern PyTypeObject *PY_TYPE(ByteArrayDataInput);
class t_ByteArrayDataInput {
public:
PyObject_HEAD
ByteArrayDataInput object;
static PyObject *wrap_Object(const ByteArrayDataInput&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif