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

#include "java/lang/Object.h"

namespace java {
  namespace lang {
    class String;
    class Class;
  }
  namespace util {
    class List;
  }
  namespace io {
    class IOException;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace search {
        class Matches;
        class MatchesIterator;
      }
      namespace util {
        class IOSupplier;
      }
    }
  }
}
template<class T> class JArray;

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

        class MatchesUtils : public ::java::lang::Object {
         public:
          enum {
            mid_disjunction_8527d5575fac3ca9,
            mid_forField_8794a86127760d34,
            mid_fromSubMatches_c647ff9793e97977,
            max_mid
          };

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

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

          static ::org::apache::lucene::search::Matches *MATCH_WITH_NO_TERMS;

          static ::org::apache::lucene::search::MatchesIterator disjunction(const ::java::util::List &);
          static ::org::apache::lucene::search::Matches forField(const ::java::lang::String &, const ::org::apache::lucene::util::IOSupplier &);
          static ::org::apache::lucene::search::Matches fromSubMatches(const ::java::util::List &);
        };
      }
    }
  }
}

#include <Python.h>

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

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

#endif