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 / spans / SpanContainingQuery.h
Size: Mime:
#ifndef org_apache_lucene_search_spans_SpanContainingQuery_H
#define org_apache_lucene_search_spans_SpanContainingQuery_H

#include "org/apache/lucene/search/spans/SpanContainQuery.h"

namespace java {
  namespace lang {
    class String;
    class Class;
  }
  namespace io {
    class IOException;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace search {
        class IndexSearcher;
        namespace spans {
          class SpanWeight;
          class SpanQuery;
        }
      }
    }
  }
}
template<class T> class JArray;

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

          class SpanContainingQuery : public ::org::apache::lucene::search::spans::SpanContainQuery {
           public:
            enum {
              mid_init$_a60911c4f93a6455,
              mid_createWeight_05156080ac8ee83a,
              mid_toString_b6b89aa915f3be5f,
              max_mid
            };

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

            explicit SpanContainingQuery(jobject obj) : ::org::apache::lucene::search::spans::SpanContainQuery(obj) {
              if (obj != NULL && mids$ == NULL)
                env->getClass(initializeClass);
            }
            SpanContainingQuery(const SpanContainingQuery& obj) : ::org::apache::lucene::search::spans::SpanContainQuery(obj) {}

            SpanContainingQuery(const ::org::apache::lucene::search::spans::SpanQuery &, const ::org::apache::lucene::search::spans::SpanQuery &);

            ::org::apache::lucene::search::spans::SpanWeight createWeight(const ::org::apache::lucene::search::IndexSearcher &, jboolean, jfloat) const;
            ::java::lang::String toString(const ::java::lang::String &) const;
          };
        }
      }
    }
  }
}

#include <Python.h>

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

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

#endif