Package org.geonames
Class BoundingBox
- java.lang.Object
-
- org.geonames.BoundingBox
-
public class BoundingBox extends Object
- Since:
- 15.08.2012
- Author:
- Marc Wick
-
-
Constructor Summary
Constructors Constructor Description BoundingBox(double west, double east, double south, double north)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetEast()doublegetNorth()doublegetSouth()doublegetWest()voidsetEast(double east)voidsetNorth(double north)voidsetSouth(double south)voidsetWest(double west)
-
-
-
Method Detail
-
getWest
public double getWest()
- Returns:
- the west
-
setWest
public void setWest(double west)
- Parameters:
west- the west to set
-
getEast
public double getEast()
- Returns:
- the east
-
setEast
public void setEast(double east)
- Parameters:
east- the east to set
-
getSouth
public double getSouth()
- Returns:
- the south
-
setSouth
public void setSouth(double south)
- Parameters:
south- the south to set
-
getNorth
public double getNorth()
- Returns:
- the north
-
setNorth
public void setNorth(double north)
- Parameters:
north- the north to set
-
-