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 / payloads / PayloadSpanUtil.h
Size: Mime:
#ifndef org_apache_lucene_payloads_PayloadSpanUtil_H
#define org_apache_lucene_payloads_PayloadSpanUtil_H

#include "java/lang/Object.h"

namespace java {
  namespace lang {
    class Class;
  }
  namespace io {
    class IOException;
  }
  namespace util {
    class Collection;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace index {
        class IndexReaderContext;
      }
      namespace search {
        class Query;
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace payloads {

        class PayloadSpanUtil : public ::java::lang::Object {
         public:
          enum {
            mid_init$_82242e17d0f82573,
            mid_getPayloadsForQuery_6f391a7a0205d2dd,
            max_mid
          };

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

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

          PayloadSpanUtil(const ::org::apache::lucene::index::IndexReaderContext &);

          ::java::util::Collection getPayloadsForQuery(const ::org::apache::lucene::search::Query &) const;
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace payloads {
        extern PyType_Def PY_TYPE_DEF(PayloadSpanUtil);
        extern PyTypeObject *PY_TYPE(PayloadSpanUtil);

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

#endif