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 / RadixSelector.h
Size: Mime:
#ifndef org_apache_lucene_util_RadixSelector_H
#define org_apache_lucene_util_RadixSelector_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 RadixSelector : public ::org::apache::lucene::util::Selector {
         public:
          enum {
            mid_select_ded3d79894b7d18d,
            mid_byteAt_8911bf18e41c2ffc,
            mid_getFallbackSelector_d14eac60d888b760,
            max_mid
          };

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

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

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

#include <Python.h>

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

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

#endif