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 / nodes / PointRangeQueryNode.h
Size: Mime:
#ifndef org_apache_lucene_queryparser_flexible_standard_nodes_PointRangeQueryNode_H
#define org_apache_lucene_queryparser_flexible_standard_nodes_PointRangeQueryNode_H

#include "org/apache/lucene/queryparser/flexible/standard/nodes/AbstractRangeQueryNode.h"

namespace org {
  namespace apache {
    namespace lucene {
      namespace queryparser {
        namespace flexible {
          namespace core {
            class QueryNodeException;
          }
          namespace standard {
            namespace nodes {
              class PointQueryNode;
            }
            namespace config {
              class PointsConfig;
            }
          }
        }
      }
    }
  }
}
namespace java {
  namespace lang {
    class String;
    class Class;
  }
}
template<class T> class JArray;

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

              class PointRangeQueryNode : public ::org::apache::lucene::queryparser::flexible::standard::nodes::AbstractRangeQueryNode {
               public:
                enum {
                  mid_init$_54972e728186205d,
                  mid_getPointsConfig_6c18829564ffabb3,
                  mid_setBounds_54972e728186205d,
                  mid_toString_a6d454b6117bc1ba,
                  max_mid
                };

                enum {
                  fid_numericConfig,
                  max_fid
                };

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

                explicit PointRangeQueryNode(jobject obj) : ::org::apache::lucene::queryparser::flexible::standard::nodes::AbstractRangeQueryNode(obj) {
                  if (obj != NULL && mids$ == NULL)
                    env->getClass(initializeClass);
                }
                PointRangeQueryNode(const PointRangeQueryNode& obj) : ::org::apache::lucene::queryparser::flexible::standard::nodes::AbstractRangeQueryNode(obj) {}

                ::org::apache::lucene::queryparser::flexible::standard::config::PointsConfig _get_numericConfig() const;
                void _set_numericConfig(const ::org::apache::lucene::queryparser::flexible::standard::config::PointsConfig &) const;

                PointRangeQueryNode(const ::org::apache::lucene::queryparser::flexible::standard::nodes::PointQueryNode &, const ::org::apache::lucene::queryparser::flexible::standard::nodes::PointQueryNode &, jboolean, jboolean, const ::org::apache::lucene::queryparser::flexible::standard::config::PointsConfig &);

                ::org::apache::lucene::queryparser::flexible::standard::config::PointsConfig getPointsConfig() const;
                void setBounds(const ::org::apache::lucene::queryparser::flexible::standard::nodes::PointQueryNode &, const ::org::apache::lucene::queryparser::flexible::standard::nodes::PointQueryNode &, jboolean, jboolean, const ::org::apache::lucene::queryparser::flexible::standard::config::PointsConfig &) const;
                ::java::lang::String toString() const;
              };
            }
          }
        }
      }
    }
  }
}

#include <Python.h>

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

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

#endif