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 / geo / EdgeTree.h
Size: Mime:
#ifndef org_apache_lucene_geo_EdgeTree_H
#define org_apache_lucene_geo_EdgeTree_H

#include "java/lang/Object.h"

namespace java {
  namespace lang {
    class Class;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace index {
        class PointValues$Relation;
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace geo {

        class EdgeTree : public ::java::lang::Object {
         public:
          enum {
            mid_relate_04edc0043539b154,
            mid_relateTriangle_348106b8fe69cf8e,
            mid_createTree_9e1645144952f21d,
            mid_componentRelateTriangle_348106b8fe69cf8e,
            mid_componentRelate_04edc0043539b154,
            mid_internalComponentRelate_04edc0043539b154,
            max_mid
          };

          enum {
            fid_maxLat,
            fid_maxLon,
            fid_minLat,
            fid_minLon,
            max_fid
          };

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

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

          jdouble _get_maxLat() const;
          jdouble _get_maxLon() const;
          jdouble _get_minLat() const;
          jdouble _get_minLon() const;

          ::org::apache::lucene::index::PointValues$Relation relate(jdouble, jdouble, jdouble, jdouble) const;
          ::org::apache::lucene::index::PointValues$Relation relateTriangle(jdouble, jdouble, jdouble, jdouble, jdouble, jdouble) const;
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace geo {
        extern PyType_Def PY_TYPE_DEF(EdgeTree);
        extern PyTypeObject *PY_TYPE(EdgeTree);

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

#endif