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 / analysis / payloads / IntegerEncoder.h
Size: Mime:
#ifndef org_apache_lucene_analysis_payloads_IntegerEncoder_H
#define org_apache_lucene_analysis_payloads_IntegerEncoder_H

#include "org/apache/lucene/analysis/payloads/AbstractEncoder.h"

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

namespace org {
  namespace apache {
    namespace lucene {
      namespace analysis {
        namespace payloads {

          class IntegerEncoder : public ::org::apache::lucene::analysis::payloads::AbstractEncoder {
           public:
            enum {
              mid_init$_d7775b228e076e62,
              mid_encode_b9b7f80fead0b8b0,
              max_mid
            };

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

            explicit IntegerEncoder(jobject obj) : ::org::apache::lucene::analysis::payloads::AbstractEncoder(obj) {
              if (obj != NULL && mids$ == NULL)
                env->getClass(initializeClass);
            }
            IntegerEncoder(const IntegerEncoder& obj) : ::org::apache::lucene::analysis::payloads::AbstractEncoder(obj) {}

            IntegerEncoder();

            ::org::apache::lucene::util::BytesRef encode(const JArray< jchar > &, jint, jint) const;
          };
        }
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace analysis {
        namespace payloads {
          extern PyType_Def PY_TYPE_DEF(IntegerEncoder);
          extern PyTypeObject *PY_TYPE(IntegerEncoder);

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

#endif