Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_store_ByteBuffersIndexInput_H
#define org_apache_lucene_store_ByteBuffersIndexInput_H
#include "org/apache/lucene/store/IndexInput.h"
namespace java {
namespace lang {
class String;
class Class;
}
namespace util {
class Set;
class Map;
}
namespace io {
class IOException;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace store {
class ByteBuffersIndexInput;
class ByteBuffersDataInput;
class RandomAccessInput;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace store {
class ByteBuffersIndexInput : public ::org::apache::lucene::store::IndexInput {
public:
enum {
mid_init$_a76e07c54134b177,
mid_clone_afb4c77094ec8405,
mid_close_d7775b228e076e62,
mid_getFilePointer_062ad918b5794303,
mid_length_062ad918b5794303,
mid_randomAccessSlice_0a933bc983e7161d,
mid_readByte_e0bb1ed55719c754,
mid_readByte_28c5460027b89ec6,
mid_readBytes_572579157b228a11,
mid_readBytes_716a2c2763330fbd,
mid_readInt_9135e6328d9d7dfd,
mid_readInt_e04c5c80cabeae0e,
mid_readLong_062ad918b5794303,
mid_readLong_287a2baadd48f056,
mid_readMapOfStrings_192c7c05a36e3a34,
mid_readSetOfStrings_0f146b3deb900c94,
mid_readShort_410ac1426f0f5ae1,
mid_readShort_be41260587b1f1a3,
mid_readString_a6d454b6117bc1ba,
mid_readVInt_9135e6328d9d7dfd,
mid_readVLong_062ad918b5794303,
mid_readZInt_9135e6328d9d7dfd,
mid_readZLong_062ad918b5794303,
mid_seek_ea21977c7b14e0c0,
mid_skipBytes_ea21977c7b14e0c0,
mid_slice_69c4b0d4a389d621,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit ByteBuffersIndexInput(jobject obj) : ::org::apache::lucene::store::IndexInput(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
ByteBuffersIndexInput(const ByteBuffersIndexInput& obj) : ::org::apache::lucene::store::IndexInput(obj) {}
ByteBuffersIndexInput(const ::org::apache::lucene::store::ByteBuffersDataInput &, const ::java::lang::String &);
::org::apache::lucene::store::IndexInput clone() const;
void close() const;
jlong getFilePointer() const;
jlong length() const;
::org::apache::lucene::store::RandomAccessInput randomAccessSlice(jlong, jlong) const;
jbyte readByte() const;
jbyte readByte(jlong) const;
void readBytes(const JArray< jbyte > &, jint, jint) const;
void readBytes(const JArray< jbyte > &, jint, jint, jboolean) const;
jint readInt() const;
jint readInt(jlong) const;
jlong readLong() const;
jlong readLong(jlong) const;
::java::util::Map readMapOfStrings() const;
::java::util::Set readSetOfStrings() const;
jshort readShort() const;
jshort readShort(jlong) const;
::java::lang::String readString() const;
jint readVInt() const;
jlong readVLong() const;
jint readZInt() const;
jlong readZLong() const;
void seek(jlong) const;
void skipBytes(jlong) const;
ByteBuffersIndexInput slice(const ::java::lang::String &, jlong, jlong) const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace store {
extern PyType_Def PY_TYPE_DEF(ByteBuffersIndexInput);
extern PyTypeObject *PY_TYPE(ByteBuffersIndexInput);
class t_ByteBuffersIndexInput {
public:
PyObject_HEAD
ByteBuffersIndexInput object;
static PyObject *wrap_Object(const ByteBuffersIndexInput&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif