Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lucene / include / org / apache / lucene / util / bkd / BKDWriter.h
Size: Mime:
#ifndef org_apache_lucene_util_bkd_BKDWriter_H
#define org_apache_lucene_util_bkd_BKDWriter_H

#include "java/lang/Object.h"

namespace java {
  namespace lang {
    class String;
    class Class;
  }
  namespace util {
    class List;
  }
  namespace io {
    class IOException;
    class Closeable;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace store {
        class IndexOutput;
        class Directory;
      }
      namespace util {
        namespace bkd {
          class BKDReader;
        }
      }
      namespace codecs {
        class MutablePointValues;
      }
      namespace index {
        class MergeState$DocMap;
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        namespace bkd {

          class BKDWriter : public ::java::lang::Object {
           public:
            enum {
              mid_init$_8dbb66074d7310d1,
              mid_add_01dedb47074c38c9,
              mid_close_d7775b228e076e62,
              mid_finish_074fa9583153717a,
              mid_getPointCount_062ad918b5794303,
              mid_merge_fbae637a366529e5,
              mid_verifyParams_afa16b0c2760b2a6,
              mid_writeField_593e1eb25a7f9b0e,
              mid_split_8496b8bef8a32dbd,
              max_mid
            };

            static ::java::lang::Class *class$;
            static jmethodID *mids$;
            static bool live$;
            static jclass initializeClass(bool);

            explicit BKDWriter(jobject obj) : ::java::lang::Object(obj) {
              if (obj != NULL && mids$ == NULL)
                env->getClass(initializeClass);
            }
            BKDWriter(const BKDWriter& obj) : ::java::lang::Object(obj) {}

            static ::java::lang::String *CODEC_NAME;
            static jfloat DEFAULT_MAX_MB_SORT_IN_HEAP;
            static jint DEFAULT_MAX_POINTS_IN_LEAF_NODE;
            static jint MAX_DIMS;
            static jint VERSION_COMPRESSED_DOC_IDS;
            static jint VERSION_COMPRESSED_VALUES;
            static jint VERSION_CURRENT;
            static jint VERSION_IMPLICIT_SPLIT_DIM_1D;
            static jint VERSION_LEAF_STORES_BOUNDS;
            static jint VERSION_PACKED_INDEX;
            static jint VERSION_SELECTIVE_INDEXING;
            static jint VERSION_START;

            BKDWriter(jint, const ::org::apache::lucene::store::Directory &, const ::java::lang::String &, jint, jint, jint, jint, jdouble, jlong, jboolean);

            void add(const JArray< jbyte > &, jint) const;
            void close() const;
            jlong finish(const ::org::apache::lucene::store::IndexOutput &) const;
            jlong getPointCount() const;
            jlong merge(const ::org::apache::lucene::store::IndexOutput &, const ::java::util::List &, const ::java::util::List &) const;
            static void verifyParams(jint, jint, jint, jdouble, jlong);
            jlong writeField(const ::org::apache::lucene::store::IndexOutput &, const ::java::lang::String &, const ::org::apache::lucene::codecs::MutablePointValues &) const;
          };
        }
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        namespace bkd {
          extern PyType_Def PY_TYPE_DEF(BKDWriter);
          extern PyTypeObject *PY_TYPE(BKDWriter);

          class t_BKDWriter {
          public:
            PyObject_HEAD
            BKDWriter object;
            static PyObject *wrap_Object(const BKDWriter&);
            static PyObject *wrap_jobject(const jobject&);
            static void install(PyObject *module);
            static void initialize(PyObject *module);
          };
        }
      }
    }
  }
}

#endif