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

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

namespace java {
  namespace lang {
    class String;
    class Class;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace search {
        namespace grouping {
          class TermGroupFacetCollector;
        }
      }
      namespace util {
        class BytesRef;
      }
    }
  }
}
template<class T> class JArray;

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

          class TermGroupFacetCollector : public ::org::apache::lucene::search::grouping::GroupFacetCollector {
           public:
            enum {
              mid_createTermGroupFacetCollector_01a8e0cea6e33588,
              max_mid
            };

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

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

            static TermGroupFacetCollector createTermGroupFacetCollector(const ::java::lang::String &, const ::java::lang::String &, jboolean, const ::org::apache::lucene::util::BytesRef &, jint);
          };
        }
      }
    }
  }
}

#include <Python.h>

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

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

#endif