Uses of Class
org.apache.lucene.geo.LatLonGeometry
-
Packages that use LatLonGeometry 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 LatLonGeometry in org.apache.lucene.document
Fields in org.apache.lucene.document declared as LatLonGeometry Modifier and Type Field Description private LatLonGeometry[]
LatLonDocValuesQuery. geometries
Methods in org.apache.lucene.document that return LatLonGeometry Modifier and Type Method Description private static LatLonGeometry[]
LatLonShapeQuery. validateGeometries(ShapeField.QueryRelation queryRelation, LatLonGeometry... geometries)
private static LatLonGeometry[]
LatLonPointQuery. validateGeometry(ShapeField.QueryRelation queryRelation, LatLonGeometry... geometries)
Methods in org.apache.lucene.document with parameters of type LatLonGeometry Modifier and Type Method Description private TwoPhaseIterator
LatLonDocValuesQuery. contains(SortedNumericDocValues values, LatLonGeometry[] geometries)
private static Query
LatLonPoint. makeContainsGeometryQuery(java.lang.String field, LatLonGeometry... latLonGeometries)
private static Query
LatLonShape. makeContainsGeometryQuery(java.lang.String field, LatLonGeometry... latLonGeometries)
static Query
LatLonPoint. newGeometryQuery(java.lang.String field, ShapeField.QueryRelation queryRelation, LatLonGeometry... latLonGeometries)
Create a query for matching one or more geometries against the providedShapeField.QueryRelation
.static Query
LatLonShape. newGeometryQuery(java.lang.String field, ShapeField.QueryRelation queryRelation, LatLonGeometry... latLonGeometries)
create a query to find all indexed geo shapes that intersect a provided geometry (or array of geometries).static Query
LatLonDocValuesField. newSlowGeometryQuery(java.lang.String field, ShapeField.QueryRelation queryRelation, LatLonGeometry... latLonGeometries)
Create a query for matching one or more geometries against the providedShapeField.QueryRelation
.private static LatLonGeometry[]
LatLonShapeQuery. validateGeometries(ShapeField.QueryRelation queryRelation, LatLonGeometry... geometries)
private static LatLonGeometry[]
LatLonPointQuery. validateGeometry(ShapeField.QueryRelation queryRelation, LatLonGeometry... geometries)
Constructors in org.apache.lucene.document with parameters of type LatLonGeometry Constructor Description LatLonDocValuesQuery(java.lang.String field, ShapeField.QueryRelation queryRelation, LatLonGeometry... geometries)
LatLonPointQuery(java.lang.String field, ShapeField.QueryRelation queryRelation, LatLonGeometry... geometries)
Creates a query that matches all indexed shapes to the provided array ofLatLonGeometry
LatLonShapeDocValuesQuery(java.lang.String field, ShapeField.QueryRelation queryRelation, LatLonGeometry... geometries)
LatLonShapeQuery(java.lang.String field, ShapeField.QueryRelation queryRelation, LatLonGeometry... geometries)
Creates a query that matches all indexed shapes to the provided array ofLatLonGeometry
-
Uses of LatLonGeometry in org.apache.lucene.geo
Subclasses of LatLonGeometry in org.apache.lucene.geo Modifier and Type Class Description class
Circle
Represents a circle on the earth's surface.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.Methods in org.apache.lucene.geo with parameters of type LatLonGeometry Modifier and Type Method Description static Component2D
LatLonGeometry. create(LatLonGeometry... latLonGeometries)
Creates a Component2D from the provided LatLonGeometry array
-