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

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

namespace java {
  namespace lang {
    class Class;
  }
  namespace io {
    class IOException;
    class Closeable;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        class Accountable;
      }
      namespace codecs {
        class FieldsProducer;
      }
    }
  }
}
template<class T> class JArray;

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

        class FieldsProducer : public ::org::apache::lucene::index::Fields {
         public:
          enum {
            mid_checkIntegrity_d7775b228e076e62,
            mid_close_d7775b228e076e62,
            mid_getMergeInstance_ec839c7dd94076f6,
            max_mid
          };

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

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

          void checkIntegrity() const;
          void close() const;
          FieldsProducer getMergeInstance() const;
        };
      }
    }
  }
}

#include <Python.h>

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

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

#endif