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 / document / TextField.h
Size: Mime:
#ifndef org_apache_lucene_document_TextField_H
#define org_apache_lucene_document_TextField_H

#include "org/apache/lucene/document/Field.h"

namespace java {
  namespace lang {
    class String;
    class Class;
  }
  namespace io {
    class Reader;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace document {
        class FieldType;
        class Field$Store;
      }
      namespace analysis {
        class TokenStream;
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace document {

        class TextField : public ::org::apache::lucene::document::Field {
         public:
          enum {
            mid_init$_25c043daf4040fb7,
            mid_init$_5e7f3de5f1332219,
            mid_init$_162174beb4607fb3,
            max_mid
          };

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

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

          static ::org::apache::lucene::document::FieldType *TYPE_NOT_STORED;
          static ::org::apache::lucene::document::FieldType *TYPE_STORED;

          TextField(const ::java::lang::String &, const ::org::apache::lucene::analysis::TokenStream &);
          TextField(const ::java::lang::String &, const ::java::io::Reader &);
          TextField(const ::java::lang::String &, const ::java::lang::String &, const ::org::apache::lucene::document::Field$Store &);
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace document {
        extern PyType_Def PY_TYPE_DEF(TextField);
        extern PyTypeObject *PY_TYPE(TextField);

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

#endif