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 / grouping / TermGroupSelector.h
Size: Mime:
#ifndef org_apache_lucene_search_grouping_TermGroupSelector_H
#define org_apache_lucene_search_grouping_TermGroupSelector_H

#include "org/apache/lucene/search/grouping/GroupSelector.h"

namespace java {
  namespace lang {
    class String;
    class Class;
  }
  namespace io {
    class IOException;
  }
  namespace util {
    class Collection;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace search {
        namespace grouping {
          class GroupSelector$State;
          class SearchGroup;
        }
      }
      namespace index {
        class LeafReaderContext;
      }
      namespace util {
        class BytesRef;
      }
    }
  }
}
template<class T> class JArray;

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

          class TermGroupSelector : public ::org::apache::lucene::search::grouping::GroupSelector {
           public:
            enum {
              mid_init$_d1402cb7ea6d4983,
              mid_advanceTo_5d6e142841c0db53,
              mid_copyValue_0c5811435dd00c85,
              mid_currentValue_0c5811435dd00c85,
              mid_setGroups_056491ce59c66210,
              mid_setNextReader_cdc1ef7038a55870,
              max_mid
            };

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

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

            TermGroupSelector(const ::java::lang::String &);

            ::org::apache::lucene::search::grouping::GroupSelector$State advanceTo(jint) const;
            ::org::apache::lucene::util::BytesRef copyValue() const;
            ::org::apache::lucene::util::BytesRef currentValue() const;
            void setGroups(const ::java::util::Collection &) const;
            void setNextReader(const ::org::apache::lucene::index::LeafReaderContext &) const;
          };
        }
      }
    }
  }
}

#include <Python.h>

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

          class t_TermGroupSelector {
          public:
            PyObject_HEAD
            TermGroupSelector object;
            PyTypeObject *parameters[1];
            static PyTypeObject **parameters_(t_TermGroupSelector *self)
            {
              return (PyTypeObject **) &(self->parameters);
            }
            static PyObject *wrap_Object(const TermGroupSelector&);
            static PyObject *wrap_jobject(const jobject&);
            static PyObject *wrap_Object(const TermGroupSelector&, PyTypeObject *);
            static PyObject *wrap_jobject(const jobject&, PyTypeObject *);
            static void install(PyObject *module);
            static void initialize(PyObject *module);
          };
        }
      }
    }
  }
}

#endif