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

#include "org/apache/lucene/index/LegacyBinaryDocValues.h"

namespace java {
  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 LegacySortedDocValues : public ::org::apache::lucene::index::LegacyBinaryDocValues {
         public:
          enum {
            mid_get_0e4174f92283fc0c,
            mid_getOrd_898568c95ed890a7,
            mid_getValueCount_9135e6328d9d7dfd,
            mid_lookupOrd_0e4174f92283fc0c,
            mid_lookupTerm_1c4ca52d1ca2a202,
            mid_termsEnum_a9c8369f732c8f59,
            max_mid
          };

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

          explicit LegacySortedDocValues(jobject obj) : ::org::apache::lucene::index::LegacyBinaryDocValues(obj) {
            if (obj != NULL && mids$ == NULL)
              env->getClass(initializeClass);
          }
          LegacySortedDocValues(const LegacySortedDocValues& obj) : ::org::apache::lucene::index::LegacyBinaryDocValues(obj) {}

          ::org::apache::lucene::util::BytesRef get(jint) const;
          jint getOrd(jint) const;
          jint getValueCount() const;
          ::org::apache::lucene::util::BytesRef lookupOrd(jint) const;
          jint lookupTerm(const ::org::apache::lucene::util::BytesRef &) 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(LegacySortedDocValues);
        extern PyTypeObject *PY_TYPE(LegacySortedDocValues);

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

#endif