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 / queryparser / flexible / standard / config / PointsConfig.h
Size: Mime:
#ifndef org_apache_lucene_queryparser_flexible_standard_config_PointsConfig_H
#define org_apache_lucene_queryparser_flexible_standard_config_PointsConfig_H

#include "java/lang/Object.h"

namespace java {
  namespace text {
    class NumberFormat;
  }
  namespace lang {
    class Class;
    class Number;
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace queryparser {
        namespace flexible {
          namespace standard {
            namespace config {

              class PointsConfig : public ::java::lang::Object {
               public:
                enum {
                  mid_init$_77ec844da1b34f88,
                  mid_equals_ac708f0101821708,
                  mid_getNumberFormat_a7ba8a3a633438ac,
                  mid_getType_4b9cb03fe740959d,
                  mid_hashCode_9135e6328d9d7dfd,
                  mid_setNumberFormat_8f305dd95a12e31f,
                  mid_setType_e66f4df04b497478,
                  max_mid
                };

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

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

                PointsConfig(const ::java::text::NumberFormat &, const ::java::lang::Class &);

                jboolean equals(const ::java::lang::Object &) const;
                ::java::text::NumberFormat getNumberFormat() const;
                ::java::lang::Class getType() const;
                jint hashCode() const;
                void setNumberFormat(const ::java::text::NumberFormat &) const;
                void setType(const ::java::lang::Class &) const;
              };
            }
          }
        }
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace queryparser {
        namespace flexible {
          namespace standard {
            namespace config {
              extern PyType_Def PY_TYPE_DEF(PointsConfig);
              extern PyTypeObject *PY_TYPE(PointsConfig);

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

#endif