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 / packed / DirectMonotonicReader.h
Size: Mime:
#ifndef org_apache_lucene_util_packed_DirectMonotonicReader_H
#define org_apache_lucene_util_packed_DirectMonotonicReader_H

#include "java/lang/Object.h"

namespace java {
  namespace lang {
    class Class;
  }
  namespace io {
    class IOException;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        namespace packed {
          class DirectMonotonicReader$Meta;
        }
        class LongValues;
      }
      namespace store {
        class IndexInput;
        class RandomAccessInput;
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        namespace packed {

          class DirectMonotonicReader : public ::java::lang::Object {
           public:
            enum {
              mid_init$_d7775b228e076e62,
              mid_getInstance_17d8af06c1e6530f,
              mid_loadMeta_b807905016687c02,
              max_mid
            };

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

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

            DirectMonotonicReader();

            static ::org::apache::lucene::util::LongValues getInstance(const ::org::apache::lucene::util::packed::DirectMonotonicReader$Meta &, const ::org::apache::lucene::store::RandomAccessInput &);
            static ::org::apache::lucene::util::packed::DirectMonotonicReader$Meta loadMeta(const ::org::apache::lucene::store::IndexInput &, jlong, jint);
          };
        }
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        namespace packed {
          extern PyType_Def PY_TYPE_DEF(DirectMonotonicReader);
          extern PyTypeObject *PY_TYPE(DirectMonotonicReader);

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

#endif