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

#include "java/lang/Object.h"

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

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

        class Rectangle2D : public ::java::lang::Object {
         public:
          enum {
            mid_containsTriangle_7905e6a8332517c0,
            mid_create_7031c35e82590154,
            mid_crossesDateline_c20c2fcd6b89d9a9,
            mid_equals_ac708f0101821708,
            mid_hashCode_9135e6328d9d7dfd,
            mid_intersectsTriangle_7905e6a8332517c0,
            mid_queryContainsPoint_dcd2685cf5f72607,
            mid_relateRangeBBox_7ecc7bda82e26a4f,
            mid_toString_a6d454b6117bc1ba,
            max_mid
          };

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

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

          jboolean containsTriangle(jint, jint, jint, jint, jint, jint) const;
          static Rectangle2D create(const ::org::apache::lucene::geo::Rectangle &);
          jboolean crossesDateline() const;
          jboolean equals(const ::java::lang::Object &) const;
          jint hashCode() const;
          jboolean intersectsTriangle(jint, jint, jint, jint, jint, jint) const;
          jboolean queryContainsPoint(jint, jint) const;
          ::org::apache::lucene::index::PointValues$Relation relateRangeBBox(jint, jint, const JArray< jbyte > &, jint, jint, const JArray< jbyte > &) const;
          ::java::lang::String toString() const;
        };
      }
    }
  }
}

#include <Python.h>

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

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

#endif