Package org.apache.lucene.geo
Class XYRectangle
- java.lang.Object
-
- org.apache.lucene.geo.Geometry
-
- org.apache.lucene.geo.XYGeometry
-
- org.apache.lucene.geo.XYRectangle
-
public final class XYRectangle extends XYGeometry
Represents a x/y cartesian rectangle.
-
-
Constructor Summary
Constructors Constructor Description XYRectangle(float minX, float maxX, float minY, float maxY)
Constructs a bounding box by first validating the provided x and y coordinates
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
static XYRectangle
fromPointDistance(float x, float y, float radius)
Compute Bounding Box for a circle in cartesian geometryint
hashCode()
protected Component2D
toComponent2D()
get a Component2D from the geometry objectString
toString()
-
Methods inherited from class org.apache.lucene.geo.XYGeometry
create
-
-
-
-
Method Detail
-
toComponent2D
protected Component2D toComponent2D()
Description copied from class:Geometry
get a Component2D from the geometry object- Specified by:
toComponent2D
in classGeometry
-
fromPointDistance
public static XYRectangle fromPointDistance(float x, float y, float radius)
Compute Bounding Box for a circle in cartesian geometry
-
-