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 / index / LiveIndexWriterConfig.h
Size: Mime:
#ifndef org_apache_lucene_index_LiveIndexWriterConfig_H
#define org_apache_lucene_index_LiveIndexWriterConfig_H

#include "java/lang/Object.h"

namespace java {
  namespace lang {
    class String;
    class Class;
  }
  namespace util {
    class Set;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace analysis {
        class Analyzer;
      }
      namespace index {
        class MergeScheduler;
        class IndexDeletionPolicy;
        class IndexWriterConfig$OpenMode;
        class IndexWriter$IndexReaderWarmer;
        class IndexCommit;
        class LiveIndexWriterConfig;
        class MergePolicy;
      }
      namespace codecs {
        class Codec;
      }
      namespace search {
        class Sort;
        namespace similarities {
          class Similarity;
        }
      }
      namespace util {
        class InfoStream;
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace index {

        class LiveIndexWriterConfig : public ::java::lang::Object {
         public:
          enum {
            mid_getAnalyzer_20e44cf44322e72a,
            mid_getCodec_76f248b159f8bc56,
            mid_getCommitOnClose_c20c2fcd6b89d9a9,
            mid_getIndexCommit_c3b2c34a4addd83a,
            mid_getIndexCreatedVersionMajor_9135e6328d9d7dfd,
            mid_getIndexDeletionPolicy_0d592033bed1e945,
            mid_getIndexSort_9db197114c8ff688,
            mid_getIndexSortFields_0f146b3deb900c94,
            mid_getInfoStream_8e9eae0756ad243d,
            mid_getMaxBufferedDocs_9135e6328d9d7dfd,
            mid_getMergePolicy_fc8fa49eeaacb11f,
            mid_getMergeScheduler_db537c2ef5abf3d5,
            mid_getMergedSegmentWarmer_83f54d8839700bd6,
            mid_getOpenMode_b8f8071e6360daef,
            mid_getRAMBufferSizeMB_ab5a92c6a29be348,
            mid_getRAMPerThreadHardLimitMB_9135e6328d9d7dfd,
            mid_getReaderPooling_c20c2fcd6b89d9a9,
            mid_getSimilarity_9313fc06e032ffd8,
            mid_getSoftDeletesField_a6d454b6117bc1ba,
            mid_getUseCompoundFile_c20c2fcd6b89d9a9,
            mid_isCheckPendingFlushOnUpdate_c20c2fcd6b89d9a9,
            mid_setCheckPendingFlushUpdate_d1548491ad7c56ef,
            mid_setMaxBufferedDocs_73775299081e5df0,
            mid_setMergePolicy_ded84b456182f8b0,
            mid_setMergedSegmentWarmer_9c36ed5c74b69d0b,
            mid_setRAMBufferSizeMB_20b7e3bac0cb1da7,
            mid_setUseCompoundFile_d1548491ad7c56ef,
            mid_toString_a6d454b6117bc1ba,
            max_mid
          };

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

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

          ::org::apache::lucene::analysis::Analyzer getAnalyzer() const;
          ::org::apache::lucene::codecs::Codec getCodec() const;
          jboolean getCommitOnClose() const;
          ::org::apache::lucene::index::IndexCommit getIndexCommit() const;
          jint getIndexCreatedVersionMajor() const;
          ::org::apache::lucene::index::IndexDeletionPolicy getIndexDeletionPolicy() const;
          ::org::apache::lucene::search::Sort getIndexSort() const;
          ::java::util::Set getIndexSortFields() const;
          ::org::apache::lucene::util::InfoStream getInfoStream() const;
          jint getMaxBufferedDocs() const;
          ::org::apache::lucene::index::MergePolicy getMergePolicy() const;
          ::org::apache::lucene::index::MergeScheduler getMergeScheduler() const;
          ::org::apache::lucene::index::IndexWriter$IndexReaderWarmer getMergedSegmentWarmer() const;
          ::org::apache::lucene::index::IndexWriterConfig$OpenMode getOpenMode() const;
          jdouble getRAMBufferSizeMB() const;
          jint getRAMPerThreadHardLimitMB() const;
          jboolean getReaderPooling() const;
          ::org::apache::lucene::search::similarities::Similarity getSimilarity() const;
          ::java::lang::String getSoftDeletesField() const;
          jboolean getUseCompoundFile() const;
          jboolean isCheckPendingFlushOnUpdate() const;
          LiveIndexWriterConfig setCheckPendingFlushUpdate(jboolean) const;
          LiveIndexWriterConfig setMaxBufferedDocs(jint) const;
          LiveIndexWriterConfig setMergePolicy(const ::org::apache::lucene::index::MergePolicy &) const;
          LiveIndexWriterConfig setMergedSegmentWarmer(const ::org::apache::lucene::index::IndexWriter$IndexReaderWarmer &) const;
          LiveIndexWriterConfig setRAMBufferSizeMB(jdouble) const;
          LiveIndexWriterConfig setUseCompoundFile(jboolean) const;
          ::java::lang::String toString() const;
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace index {
        extern PyType_Def PY_TYPE_DEF(LiveIndexWriterConfig);
        extern PyTypeObject *PY_TYPE(LiveIndexWriterConfig);

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

#endif