Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_geo_Line_H
#define org_apache_lucene_geo_Line_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class String;
class Class;
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace geo {
class Line : public ::java::lang::Object {
public:
enum {
mid_init$_aa8a291ddb187905,
mid_equals_ac708f0101821708,
mid_getLat_cdb19d58cf15e977,
mid_getLats_6e9982ab5f354c69,
mid_getLon_cdb19d58cf15e977,
mid_getLons_6e9982ab5f354c69,
mid_hashCode_9135e6328d9d7dfd,
mid_numPoints_9135e6328d9d7dfd,
mid_toGeoJSON_a6d454b6117bc1ba,
mid_toString_a6d454b6117bc1ba,
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 Line(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
Line(const Line& obj) : ::java::lang::Object(obj) {}
jdouble _get_maxLat() const;
jdouble _get_maxLon() const;
jdouble _get_minLat() const;
jdouble _get_minLon() const;
Line(const JArray< jdouble > &, const JArray< jdouble > &);
jboolean equals(const ::java::lang::Object &) const;
jdouble getLat(jint) const;
JArray< jdouble > getLats() const;
jdouble getLon(jint) const;
JArray< jdouble > getLons() const;
jint hashCode() const;
jint numPoints() const;
::java::lang::String toGeoJSON() const;
::java::lang::String toString() const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace geo {
extern PyType_Def PY_TYPE_DEF(Line);
extern PyTypeObject *PY_TYPE(Line);
class t_Line {
public:
PyObject_HEAD
Line object;
static PyObject *wrap_Object(const Line&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif