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 / util / IntroSelector.h
Size: Mime:
#ifndef org_apache_lucene_util_IntroSelector_H
#define org_apache_lucene_util_IntroSelector_H

#include "org/apache/lucene/util/Selector.h"

namespace java {
  namespace lang {
    class Class;
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {

        class IntroSelector : public ::org::apache::lucene::util::Selector {
         public:
          enum {
            mid_init$_d7775b228e076e62,
            mid_select_ded3d79894b7d18d,
            mid_compare_8911bf18e41c2ffc,
            mid_setPivot_54889bef30791899,
            mid_comparePivot_898568c95ed890a7,
            max_mid
          };

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

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

          IntroSelector();

          void select(jint, jint, jint) const;
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        extern PyType_Def PY_TYPE_DEF(IntroSelector);
        extern PyTypeObject *PY_TYPE(IntroSelector);

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

#endif