Package org.elasticsearch.geo.geometry
Class Rectangle
- java.lang.Object
-
- org.elasticsearch.geo.geometry.Rectangle
-
-
Constructor Summary
Constructors Constructor Description Rectangle(double minLat, double maxLat, double minLon, double maxLon)Constructs a bounding box by first validating the provided latitude and longitude coordinates
-
Method Summary
Modifier and Type Method Description booleancrossesDateline()Returns true if this bounding box crosses the datelinebooleanequals(java.lang.Object o)doublegetHeight()doublegetMaxLat()doublegetMaxLon()doublegetMinLat()doublegetMinLon()doublegetWidth()inthashCode()booleanisEmpty()java.lang.StringtoString()ShapeTypetype()<T> Tvisit(GeometryVisitor<T> visitor)
-
-
-
Field Detail
-
EMPTY
public static final Rectangle EMPTY
-
-
Method Detail
-
getWidth
public double getWidth()
-
getHeight
public double getHeight()
-
getMinLat
public double getMinLat()
-
getMinLon
public double getMinLon()
-
getMaxLat
public double getMaxLat()
-
getMaxLon
public double getMaxLon()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
crossesDateline
public boolean crossesDateline()
Returns true if this bounding box crosses the dateline
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
visit
public <T> T visit(GeometryVisitor<T> visitor)
-
-