Uses of Class
org.apache.lucene.document.ShapeField.QueryRelation
-
Packages that use ShapeField.QueryRelation Package Description org.apache.lucene.document org.elasticsearch.common.geo -
-
Uses of ShapeField.QueryRelation in org.apache.lucene.document
Methods in org.apache.lucene.document that return ShapeField.QueryRelation Modifier and Type Method Description static ShapeField.QueryRelationShapeField.QueryRelation. valueOf(String name)Returns the enum constant of this type with the specified name.static ShapeField.QueryRelation[]ShapeField.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 ShapeField.QueryRelation Modifier and Type Method Description static QueryLatLonShape. newBoxQuery(String field, ShapeField.QueryRelation queryRelation, double minLatitude, double maxLatitude, double minLongitude, double maxLongitude)create a query to find all indexed geo shapes that intersect a defined bounding boxstatic QueryLatLonShape. newLineQuery(String field, ShapeField.QueryRelation queryRelation, Line... lines)create a query to find all indexed geo shapes that intersect a provided linestring (or array of linestrings) note: does not support dateline crossingstatic QueryLatLonShape. newPolygonQuery(String field, ShapeField.QueryRelation queryRelation, Polygon... polygons)create a query to find all indexed geo shapes that intersect a provided polygon (or array of polygons) note: does not support dateline crossing -
Uses of ShapeField.QueryRelation in org.elasticsearch.common.geo
Methods in org.elasticsearch.common.geo that return ShapeField.QueryRelation Modifier and Type Method Description ShapeField.QueryRelationShapeRelation. getLuceneRelation()Maps ShapeRelation to Lucene's LatLonShapeRelation
-