Uses of Class
org.apache.lucene.geo.XYGeometry
-
Packages that use XYGeometry Package Description org.apache.lucene.document The logical representation of aDocumentfor indexing and searching.org.apache.lucene.geo Geospatial Utility Implementations for Lucene Core -
-
Uses of XYGeometry in org.apache.lucene.document
Fields in org.apache.lucene.document declared as XYGeometry Modifier and Type Field Description private XYGeometry[]XYDocValuesPointInGeometryQuery. geometries(package private) XYGeometry[]XYShapeQuery. geometries(package private) XYGeometry[]XYPointInGeometryQuery. xyGeometriesMethods in org.apache.lucene.document that return XYGeometry Modifier and Type Method Description XYGeometry[]XYPointInGeometryQuery. getGeometries()Returns a copy of the internal geometries arrayMethods in org.apache.lucene.document with parameters of type XYGeometry Modifier and Type Method Description static QueryXYPointField. newGeometryQuery(java.lang.String field, XYGeometry... xyGeometries)create a query to find all indexed shapes that intersect a provided geometry collection.static QueryXYShape. newGeometryQuery(java.lang.String field, ShapeField.QueryRelation queryRelation, XYGeometry... xyGeometries)create a query to find all indexed geo shapes that intersect a provided geometry collection note: Components do not support dateline crossingstatic QueryXYDocValuesField. newSlowGeometryQuery(java.lang.String field, XYGeometry... geometries)Create a query for matching points within the supplied geometries.Constructors in org.apache.lucene.document with parameters of type XYGeometry Constructor Description XYDocValuesPointInGeometryQuery(java.lang.String field, XYGeometry... geometries)XYPointInGeometryQuery(java.lang.String field, XYGeometry... xyGeometries)XYShapeQuery(java.lang.String field, ShapeField.QueryRelation queryRelation, XYGeometry... geometries)Creates a query that matches all indexed shapes to the provided polygons -
Uses of XYGeometry in org.apache.lucene.geo
Subclasses of XYGeometry in org.apache.lucene.geo Modifier and Type Class Description classXYCircleRepresents a circle on the XY plane.classXYLineRepresents a line in cartesian space.classXYPointRepresents a point on the earth's surface.classXYPolygonRepresents a polygon in cartesian space.classXYRectangleRepresents a x/y cartesian rectangle.Methods in org.apache.lucene.geo with parameters of type XYGeometry Modifier and Type Method Description static Component2DXYGeometry. create(XYGeometry... xyGeometries)Creates a Component2D from the provided XYGeometries array
-