Uses of Class
org.apache.lucene.geo.Geometry
-
Packages that use Geometry Package Description org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.geo Geospatial Utility Implementations for Lucene Core -
-
Uses of Geometry in org.apache.lucene.document
Fields in org.apache.lucene.document declared as Geometry Modifier and Type Field Description protected Geometry
ShapeDocValues. boundingBox
the bounding box of the shape docvalueprotected Geometry
ShapeDocValues. centroid
the centroid of the shape docvalue(package private) Geometry[]
SpatialQuery. geometries
Methods in org.apache.lucene.document that return Geometry Modifier and Type Method Description protected abstract Geometry
ShapeDocValues. computeBoundingBox()
protected abstract Geometry
ShapeDocValues. computeCentroid()
abstract Geometry
ShapeDocValues. getBoundingBox()
abstract Geometry
ShapeDocValuesField. getBoundingBox()
retrieves the bounding box for the geometryabstract Geometry
ShapeDocValues. getCentroid()
abstract Geometry
ShapeDocValuesField. getCentroid()
retrieves the centroid location for the geometryMethods in org.apache.lucene.document with parameters of type Geometry Modifier and Type Method Description protected Component2D
LatLonPointQuery. createComponent2D(Geometry... geometries)
protected Component2D
LatLonShapeBoundingBoxQuery. createComponent2D(Geometry... geometries)
protected Component2D
LatLonShapeDocValuesQuery. createComponent2D(Geometry... geometries)
protected Component2D
LatLonShapeQuery. createComponent2D(Geometry... geometries)
protected abstract Component2D
SpatialQuery. createComponent2D(Geometry... geometries)
protected Component2D
XYShapeDocValuesQuery. createComponent2D(Geometry... geometries)
protected Component2D
XYShapeQuery. createComponent2D(Geometry... geometries)
Constructors in org.apache.lucene.document with parameters of type Geometry Constructor Description BaseShapeDocValuesQuery(java.lang.String field, ShapeField.QueryRelation queryRelation, Geometry... geometries)
SpatialQuery(java.lang.String field, ShapeField.QueryRelation queryRelation, Geometry... geometries)
-
Uses of Geometry in org.apache.lucene.geo
Subclasses of Geometry in org.apache.lucene.geo Modifier and Type Class Description class
Circle
Represents a circle on the earth's surface.class
LatLonGeometry
Lat/Lon Geometry object.class
Line
Represents a line on the earth's surface.class
Point
Represents a point on the earth's surface.class
Polygon
Represents a closed polygon on the earth's surface.class
Rectangle
Represents a lat/lon rectangle.class
XYCircle
Represents a circle on the XY plane.class
XYGeometry
Cartesian Geometry object.class
XYLine
Represents a line in cartesian space.class
XYPoint
Represents a point on the earth's surface.class
XYPolygon
Represents a polygon in cartesian space.class
XYRectangle
Represents a x/y cartesian rectangle.
-