Uses of Class
org.apache.lucene.document.LatLonShape.QueryRelation
-
Packages that use LatLonShape.QueryRelation Package Description org.apache.lucene.document This package contains several point types:BigIntegerPointfor 128-bit integersLatLonPointfor latitude/longitude geospatial points -
-
Uses of LatLonShape.QueryRelation in org.apache.lucene.document
Methods in org.apache.lucene.document that return LatLonShape.QueryRelation Modifier and Type Method Description static LatLonShape.QueryRelationLatLonShape.QueryRelation. valueOf(String name)Returns the enum constant of this type with the specified name.static LatLonShape.QueryRelation[]LatLonShape.QueryRelation. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.lucene.document with parameters of type LatLonShape.QueryRelation Modifier and Type Method Description static QueryLatLonShape. newBoxQuery(String field, LatLonShape.QueryRelation queryRelation, double minLatitude, double maxLatitude, double minLongitude, double maxLongitude)create a query to find all polygons that intersect a defined bounding boxstatic QueryLatLonShape. newLineQuery(String field, LatLonShape.QueryRelation queryRelation, Line... lines)create a query to find all polygons that intersect a provided linestring (or array of linestrings) note: does not support dateline crossingstatic QueryLatLonShape. newPolygonQuery(String field, LatLonShape.QueryRelation queryRelation, Polygon... polygons)create a query to find all polygons that intersect a provided polygon (or array of polygons) note: does not support dateline crossing
-