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

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

namespace org {
  namespace apache {
    namespace lucene {
      namespace codecs {
        class PostingsFormat;
        class TermVectorsFormat;
        class StoredFieldsFormat;
        class PointsFormat;
        class LiveDocsFormat;
        class DocValuesFormat;
        class SegmentInfoFormat;
        class CompoundFormat;
        class NormsFormat;
        class FieldInfosFormat;
      }
    }
  }
}
namespace java {
  namespace lang {
    class Class;
  }
}
template<class T> class JArray;

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

          class SimpleTextCodec : public ::org::apache::lucene::codecs::Codec {
           public:
            enum {
              mid_init$_d7775b228e076e62,
              mid_compoundFormat_b978a2b295461573,
              mid_docValuesFormat_cf13247297b208d7,
              mid_fieldInfosFormat_9e196ee308dd376a,
              mid_liveDocsFormat_d4acde66c690f13e,
              mid_normsFormat_09e796f7d94251b8,
              mid_pointsFormat_7b7565326e2aab5c,
              mid_postingsFormat_40f5ec5a4fb297ed,
              mid_segmentInfoFormat_e27f711d0b61b917,
              mid_storedFieldsFormat_2b53a5a394310616,
              mid_termVectorsFormat_03bb519a71b68f55,
              max_mid
            };

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

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

            SimpleTextCodec();

            ::org::apache::lucene::codecs::CompoundFormat compoundFormat() const;
            ::org::apache::lucene::codecs::DocValuesFormat docValuesFormat() const;
            ::org::apache::lucene::codecs::FieldInfosFormat fieldInfosFormat() const;
            ::org::apache::lucene::codecs::LiveDocsFormat liveDocsFormat() const;
            ::org::apache::lucene::codecs::NormsFormat normsFormat() const;
            ::org::apache::lucene::codecs::PointsFormat pointsFormat() const;
            ::org::apache::lucene::codecs::PostingsFormat postingsFormat() const;
            ::org::apache::lucene::codecs::SegmentInfoFormat segmentInfoFormat() const;
            ::org::apache::lucene::codecs::StoredFieldsFormat storedFieldsFormat() const;
            ::org::apache::lucene::codecs::TermVectorsFormat termVectorsFormat() const;
          };
        }
      }
    }
  }
}

#include <Python.h>

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

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

#endif