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 / collation / tokenattributes / CollatedTermAttributeImpl.h
Size: Mime:
#ifndef org_apache_lucene_collation_tokenattributes_CollatedTermAttributeImpl_H
#define org_apache_lucene_collation_tokenattributes_CollatedTermAttributeImpl_H

#include "org/apache/lucene/analysis/tokenattributes/CharTermAttributeImpl.h"

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

namespace org {
  namespace apache {
    namespace lucene {
      namespace collation {
        namespace tokenattributes {

          class CollatedTermAttributeImpl : public ::org::apache::lucene::analysis::tokenattributes::CharTermAttributeImpl {
           public:
            enum {
              mid_init$_f90d7812fbe230e5,
              mid_getBytesRef_0c5811435dd00c85,
              max_mid
            };

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

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

            CollatedTermAttributeImpl(const ::java::text::Collator &);

            ::org::apache::lucene::util::BytesRef getBytesRef() const;
          };
        }
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace collation {
        namespace tokenattributes {
          extern PyType_Def PY_TYPE_DEF(CollatedTermAttributeImpl);
          extern PyTypeObject *PY_TYPE(CollatedTermAttributeImpl);

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

#endif