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 / simpletext / SimpleTextFieldInfosFormat.h
Size: Mime:
#ifndef org_apache_lucene_codecs_simpletext_SimpleTextFieldInfosFormat_H
#define org_apache_lucene_codecs_simpletext_SimpleTextFieldInfosFormat_H

#include "org/apache/lucene/codecs/FieldInfosFormat.h"

namespace java {
  namespace lang {
    class String;
    class Class;
  }
  namespace io {
    class IOException;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace store {
        class IOContext;
        class Directory;
      }
      namespace index {
        class SegmentInfo;
        class FieldInfos;
        class DocValuesType;
      }
    }
  }
}
template<class T> class JArray;

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

          class SimpleTextFieldInfosFormat : public ::org::apache::lucene::codecs::FieldInfosFormat {
           public:
            enum {
              mid_init$_d7775b228e076e62,
              mid_docValuesType_d2676822808f1cab,
              mid_read_e8341f42ec0e6990,
              mid_write_cfb7bcc812c95465,
              max_mid
            };

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

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

            SimpleTextFieldInfosFormat();

            ::org::apache::lucene::index::DocValuesType docValuesType(const ::java::lang::String &) const;
            ::org::apache::lucene::index::FieldInfos read(const ::org::apache::lucene::store::Directory &, const ::org::apache::lucene::index::SegmentInfo &, const ::java::lang::String &, const ::org::apache::lucene::store::IOContext &) const;
            void write(const ::org::apache::lucene::store::Directory &, const ::org::apache::lucene::index::SegmentInfo &, const ::java::lang::String &, const ::org::apache::lucene::index::FieldInfos &, const ::org::apache::lucene::store::IOContext &) const;
          };
        }
      }
    }
  }
}

#include <Python.h>

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

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

#endif