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 / LegacyBinaryDocValues.h
Size: Mime:
#ifndef org_apache_lucene_index_LegacyBinaryDocValues_H
#define org_apache_lucene_index_LegacyBinaryDocValues_H

#include "java/lang/Object.h"

namespace java {
  namespace lang {
    class Class;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        class BytesRef;
      }
    }
  }
}
template<class T> class JArray;

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

        class LegacyBinaryDocValues : public ::java::lang::Object {
         public:
          enum {
            mid_get_0e4174f92283fc0c,
            max_mid
          };

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

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

          ::org::apache::lucene::util::BytesRef get(jint) const;
        };
      }
    }
  }
}

#include <Python.h>

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

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

#endif