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 / codecs / DocValuesProducer.h
Size: Mime:
#ifndef org_apache_lucene_codecs_DocValuesProducer_H
#define org_apache_lucene_codecs_DocValuesProducer_H

#include "java/lang/Object.h"

namespace org {
  namespace apache {
    namespace lucene {
      namespace index {
        class SortedDocValues;
        class BinaryDocValues;
        class FieldInfo;
        class SortedNumericDocValues;
        class SortedSetDocValues;
        class NumericDocValues;
      }
      namespace util {
        class Accountable;
      }
      namespace codecs {
        class DocValuesProducer;
      }
    }
  }
}
namespace java {
  namespace lang {
    class Class;
  }
  namespace io {
    class IOException;
    class Closeable;
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace codecs {

        class DocValuesProducer : public ::java::lang::Object {
         public:
          enum {
            mid_checkIntegrity_d7775b228e076e62,
            mid_getBinary_34a761dd5f2d1dc5,
            mid_getMergeInstance_eddd51eeb144f2da,
            mid_getNumeric_2b8bc02eed1f5e73,
            mid_getSorted_196b8e43a92a0fd9,
            mid_getSortedNumeric_204d82575acbb5f1,
            mid_getSortedSet_45d25612ac5abfbb,
            max_mid
          };

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

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

          void checkIntegrity() const;
          ::org::apache::lucene::index::BinaryDocValues getBinary(const ::org::apache::lucene::index::FieldInfo &) const;
          DocValuesProducer getMergeInstance() const;
          ::org::apache::lucene::index::NumericDocValues getNumeric(const ::org::apache::lucene::index::FieldInfo &) const;
          ::org::apache::lucene::index::SortedDocValues getSorted(const ::org::apache::lucene::index::FieldInfo &) const;
          ::org::apache::lucene::index::SortedNumericDocValues getSortedNumeric(const ::org::apache::lucene::index::FieldInfo &) const;
          ::org::apache::lucene::index::SortedSetDocValues getSortedSet(const ::org::apache::lucene::index::FieldInfo &) const;
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace codecs {
        extern PyType_Def PY_TYPE_DEF(DocValuesProducer);
        extern PyTypeObject *PY_TYPE(DocValuesProducer);

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

#endif