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

#include "org/apache/lucene/search/DocIdSet.h"

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        class BitSet;
      }
      namespace search {
        class DocIdSetIterator;
      }
    }
  }
}
namespace java {
  namespace lang {
    class String;
    class Class;
  }
}
template<class T> class JArray;

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

        class BitDocIdSet : public ::org::apache::lucene::search::DocIdSet {
         public:
          enum {
            mid_init$_37cd781e53549a20,
            mid_init$_e729b147f0706412,
            mid_bits_f53ffd8ff07caea9,
            mid_iterator_9d857b2f46d1d07c,
            mid_ramBytesUsed_062ad918b5794303,
            mid_toString_a6d454b6117bc1ba,
            max_mid
          };

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

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

          BitDocIdSet(const ::org::apache::lucene::util::BitSet &);
          BitDocIdSet(const ::org::apache::lucene::util::BitSet &, jlong);

          ::org::apache::lucene::util::BitSet bits() const;
          ::org::apache::lucene::search::DocIdSetIterator iterator() const;
          jlong ramBytesUsed() const;
          ::java::lang::String toString() const;
        };
      }
    }
  }
}

#include <Python.h>

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

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

#endif