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 / codecs / LiveDocsFormat.h
Size: Mime:
#ifndef org_apache_lucene_codecs_LiveDocsFormat_H
#define org_apache_lucene_codecs_LiveDocsFormat_H

#include "java/lang/Object.h"

namespace java {
  namespace lang {
    class String;
    class Class;
  }
  namespace io {
    class IOException;
  }
  namespace util {
    class Collection;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace store {
        class IOContext;
        class Directory;
      }
      namespace util {
        class Bits;
      }
      namespace index {
        class SegmentCommitInfo;
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace codecs {

        class LiveDocsFormat : public ::java::lang::Object {
         public:
          enum {
            mid_files_3d945fd57f8afa66,
            mid_readLiveDocs_15c90151d4eb7e03,
            mid_writeLiveDocs_4089ee1e7afb3043,
            max_mid
          };

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

          explicit LiveDocsFormat(jobject obj) : ::java::lang::Object(obj) {
            if (obj != NULL && mids$ == NULL)
              env->getClass(initializeClass);
          }
          LiveDocsFormat(const LiveDocsFormat& obj) : ::java::lang::Object(obj) {}

          void files(const ::org::apache::lucene::index::SegmentCommitInfo &, const ::java::util::Collection &) const;
          ::org::apache::lucene::util::Bits readLiveDocs(const ::org::apache::lucene::store::Directory &, const ::org::apache::lucene::index::SegmentCommitInfo &, const ::org::apache::lucene::store::IOContext &) const;
          void writeLiveDocs(const ::org::apache::lucene::util::Bits &, const ::org::apache::lucene::store::Directory &, const ::org::apache::lucene::index::SegmentCommitInfo &, jint, const ::org::apache::lucene::store::IOContext &) const;
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace codecs {
        extern PyType_Def PY_TYPE_DEF(LiveDocsFormat);
        extern PyTypeObject *PY_TYPE(LiveDocsFormat);

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

#endif