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 / index / ReaderUtil.h
Size: Mime:
#ifndef org_apache_lucene_index_ReaderUtil_H
#define org_apache_lucene_index_ReaderUtil_H

#include "java/lang/Object.h"

namespace org {
  namespace apache {
    namespace lucene {
      namespace index {
        class IndexReaderContext;
        class LeafReaderContext;
      }
    }
  }
}
namespace java {
  namespace lang {
    class Class;
  }
  namespace util {
    class List;
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace index {

        class ReaderUtil : public ::java::lang::Object {
         public:
          enum {
            mid_getTopLevelContext_0331a5e5afddc896,
            mid_subIndex_cfa1d749a46478a7,
            mid_subIndex_e88b19db815c72f6,
            max_mid
          };

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

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

          static ::org::apache::lucene::index::IndexReaderContext getTopLevelContext(const ::org::apache::lucene::index::IndexReaderContext &);
          static jint subIndex(jint, const ::java::util::List &);
          static jint subIndex(jint, const JArray< jint > &);
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace index {
        extern PyType_Def PY_TYPE_DEF(ReaderUtil);
        extern PyTypeObject *PY_TYPE(ReaderUtil);

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

#endif