Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_store_ByteArrayIndexInput_H
#define org_apache_lucene_store_ByteArrayIndexInput_H
#include "org/apache/lucene/store/IndexInput.h"
namespace java {
namespace lang {
class String;
class Class;
}
namespace io {
class EOFException;
class IOException;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace store {
class ByteArrayIndexInput;
class RandomAccessInput;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace store {
class ByteArrayIndexInput : public ::org::apache::lucene::store::IndexInput {
public:
enum {
mid_init$_2cf97cf718a7af51,
mid_init$_c3208a985869ced9,
mid_clone_afb4c77094ec8405,
mid_close_d7775b228e076e62,
mid_getFilePointer_062ad918b5794303,
mid_length_062ad918b5794303,
mid_readByte_e0bb1ed55719c754,
mid_readByte_28c5460027b89ec6,
mid_readBytes_572579157b228a11,
mid_readInt_9135e6328d9d7dfd,
mid_readInt_e04c5c80cabeae0e,
mid_readLong_062ad918b5794303,
mid_readLong_287a2baadd48f056,
mid_readShort_410ac1426f0f5ae1,
mid_readShort_be41260587b1f1a3,
mid_readVInt_9135e6328d9d7dfd,
mid_readVLong_062ad918b5794303,
mid_seek_ea21977c7b14e0c0,
mid_slice_f5a0abfd429f5093,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit ByteArrayIndexInput(jobject obj) : ::org::apache::lucene::store::IndexInput(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
ByteArrayIndexInput(const ByteArrayIndexInput& obj) : ::org::apache::lucene::store::IndexInput(obj) {}
ByteArrayIndexInput(const ::java::lang::String &, const JArray< jbyte > &);
ByteArrayIndexInput(const ::java::lang::String &, const JArray< jbyte > &, jint, jint);
::org::apache::lucene::store::IndexInput clone() const;
void close() const;
jlong getFilePointer() const;
jlong length() const;
jbyte readByte() const;
jbyte readByte(jlong) const;
void readBytes(const JArray< jbyte > &, jint, jint) const;
jint readInt() const;
jint readInt(jlong) const;
jlong readLong() const;
jlong readLong(jlong) const;
jshort readShort() const;
jshort readShort(jlong) const;
jint readVInt() const;
jlong readVLong() const;
void seek(jlong) const;
ByteArrayIndexInput 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(ByteArrayIndexInput);
extern PyTypeObject *PY_TYPE(ByteArrayIndexInput);
class t_ByteArrayIndexInput {
public:
PyObject_HEAD
ByteArrayIndexInput object;
static PyObject *wrap_Object(const ByteArrayIndexInput&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif