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

#include "java/lang/Object.h"

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

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

        class LegacySortedSetDocValues : public ::java::lang::Object {
         public:
          enum {
            mid_getValueCount_062ad918b5794303,
            mid_lookupOrd_09087fcbb571e910,
            mid_lookupTerm_d41ba00d94651f92,
            mid_nextOrd_062ad918b5794303,
            mid_setDocument_54889bef30791899,
            mid_termsEnum_a9c8369f732c8f59,
            max_mid
          };

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

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

          static jlong NO_MORE_ORDS;

          jlong getValueCount() const;
          ::org::apache::lucene::util::BytesRef lookupOrd(jlong) const;
          jlong lookupTerm(const ::org::apache::lucene::util::BytesRef &) const;
          jlong nextOrd() const;
          void setDocument(jint) const;
          ::org::apache::lucene::index::TermsEnum termsEnum() const;
        };
      }
    }
  }
}

#include <Python.h>

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

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

#endif