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 / search / TokenStreamToTermAutomatonQuery.h
Size: Mime:
#ifndef org_apache_lucene_search_TokenStreamToTermAutomatonQuery_H
#define org_apache_lucene_search_TokenStreamToTermAutomatonQuery_H

#include "java/lang/Object.h"

namespace org {
  namespace apache {
    namespace lucene {
      namespace search {
        class TermAutomatonQuery;
      }
      namespace analysis {
        class TokenStream;
      }
    }
  }
}
namespace java {
  namespace lang {
    class String;
    class Class;
  }
  namespace io {
    class IOException;
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace search {

        class TokenStreamToTermAutomatonQuery : public ::java::lang::Object {
         public:
          enum {
            mid_init$_d7775b228e076e62,
            mid_setPreservePositionIncrements_8a3e0c1a306942cb,
            mid_toQuery_d42f20cee143b5c9,
            max_mid
          };

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

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

          TokenStreamToTermAutomatonQuery();

          void setPreservePositionIncrements(jboolean) const;
          ::org::apache::lucene::search::TermAutomatonQuery toQuery(const ::java::lang::String &, const ::org::apache::lucene::analysis::TokenStream &) const;
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace search {
        extern PyType_Def PY_TYPE_DEF(TokenStreamToTermAutomatonQuery);
        extern PyTypeObject *PY_TYPE(TokenStreamToTermAutomatonQuery);

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

#endif