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

#include "org/apache/lucene/util/AttributeFactory$StaticImplementationAttributeFactory.h"

namespace org {
  namespace apache {
    namespace lucene {
      namespace collation {
        namespace tokenattributes {
          class CollatedTermAttributeImpl;
        }
      }
      namespace util {
        class AttributeFactory;
      }
    }
  }
}
namespace java {
  namespace lang {
    class Class;
  }
  namespace text {
    class Collator;
  }
}
template<class T> class JArray;

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

        class CollationAttributeFactory : public ::org::apache::lucene::util::AttributeFactory$StaticImplementationAttributeFactory {
         public:
          enum {
            mid_init$_f90d7812fbe230e5,
            mid_init$_1ed1abe8b403680b,
            mid_createInstance_021d29f2a8a0a0d8,
            max_mid
          };

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

          explicit CollationAttributeFactory(jobject obj) : ::org::apache::lucene::util::AttributeFactory$StaticImplementationAttributeFactory(obj) {
            if (obj != NULL && mids$ == NULL)
              env->getClass(initializeClass);
          }
          CollationAttributeFactory(const CollationAttributeFactory& obj) : ::org::apache::lucene::util::AttributeFactory$StaticImplementationAttributeFactory(obj) {}

          CollationAttributeFactory(const ::java::text::Collator &);
          CollationAttributeFactory(const ::org::apache::lucene::util::AttributeFactory &, const ::java::text::Collator &);

          ::org::apache::lucene::collation::tokenattributes::CollatedTermAttributeImpl createInstance() const;
        };
      }
    }
  }
}

#include <Python.h>

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

        class t_CollationAttributeFactory {
        public:
          PyObject_HEAD
          CollationAttributeFactory object;
          PyTypeObject *parameters[1];
          static PyTypeObject **parameters_(t_CollationAttributeFactory *self)
          {
            return (PyTypeObject **) &(self->parameters);
          }
          static PyObject *wrap_Object(const CollationAttributeFactory&);
          static PyObject *wrap_jobject(const jobject&);
          static PyObject *wrap_Object(const CollationAttributeFactory&, PyTypeObject *);
          static PyObject *wrap_jobject(const jobject&, PyTypeObject *);
          static void install(PyObject *module);
          static void initialize(PyObject *module);
        };
      }
    }
  }
}

#endif