Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_store_ByteBuffersIndexOutput_H
#define org_apache_lucene_store_ByteBuffersIndexOutput_H
#include "org/apache/lucene/store/IndexOutput.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 DataInput;
class ByteBuffersDataOutput;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace store {
class ByteBuffersIndexOutput : public ::org::apache::lucene::store::IndexOutput {
public:
enum {
mid_init$_25195172082ecd4a,
mid_close_d7775b228e076e62,
mid_copyBytes_540636578414e153,
mid_getChecksum_062ad918b5794303,
mid_getFilePointer_062ad918b5794303,
mid_writeByte_fb3f7572a3943c8b,
mid_writeBytes_01dedb47074c38c9,
mid_writeBytes_572579157b228a11,
mid_writeInt_54889bef30791899,
mid_writeLong_ea21977c7b14e0c0,
mid_writeMapOfStrings_7f861190b8e19611,
mid_writeSetOfStrings_886840acb024c40a,
mid_writeShort_1dfaa9fc55b46a0d,
mid_writeString_d1402cb7ea6d4983,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit ByteBuffersIndexOutput(jobject obj) : ::org::apache::lucene::store::IndexOutput(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
ByteBuffersIndexOutput(const ByteBuffersIndexOutput& obj) : ::org::apache::lucene::store::IndexOutput(obj) {}
ByteBuffersIndexOutput(const ::org::apache::lucene::store::ByteBuffersDataOutput &, const ::java::lang::String &, const ::java::lang::String &);
void close() const;
void copyBytes(const ::org::apache::lucene::store::DataInput &, jlong) const;
jlong getChecksum() const;
jlong getFilePointer() const;
void writeByte(jbyte) const;
void writeBytes(const JArray< jbyte > &, jint) const;
void writeBytes(const JArray< jbyte > &, jint, jint) const;
void writeInt(jint) const;
void writeLong(jlong) const;
void writeMapOfStrings(const ::java::util::Map &) const;
void writeSetOfStrings(const ::java::util::Set &) const;
void writeShort(jshort) const;
void writeString(const ::java::lang::String &) const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace store {
extern PyType_Def PY_TYPE_DEF(ByteBuffersIndexOutput);
extern PyTypeObject *PY_TYPE(ByteBuffersIndexOutput);
class t_ByteBuffersIndexOutput {
public:
PyObject_HEAD
ByteBuffersIndexOutput object;
static PyObject *wrap_Object(const ByteBuffersIndexOutput&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif