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 double
getEast()
double
getNorth()
double
getSouth()
double
getWest()
void
setEast(double east)
void
setNorth(double north)
void
setSouth(double south)
void
setWest(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
-
-