Class RESTBoundingBox
- java.lang.Object
-
- de.terrestris.shoguncore.importer.communication.AbstractRESTEntity
-
- de.terrestris.shoguncore.importer.communication.RESTBoundingBox
-
public class RESTBoundingBox extends AbstractRESTEntity
- Author:
- Daniel Koch, terrestris GmbH & Co. KG
-
-
Constructor Summary
Constructors Constructor Description RESTBoundingBox()Default constructor.RESTBoundingBox(String minx, String miny, String maxx, String maxy, String crs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCrs()StringgetMaxx()StringgetMaxy()StringgetMinx()StringgetMiny()voidsetCrs(String crs)voidsetMaxx(String maxx)voidsetMaxy(String maxy)voidsetMinx(String minx)voidsetMiny(String miny)
-
-
-
Method Detail
-
getMinx
public String getMinx()
- Returns:
- the minx
-
setMinx
public void setMinx(String minx)
- Parameters:
minx- the minx to set
-
getMiny
public String getMiny()
- Returns:
- the miny
-
setMiny
public void setMiny(String miny)
- Parameters:
miny- the miny to set
-
getMaxx
public String getMaxx()
- Returns:
- the maxx
-
setMaxx
public void setMaxx(String maxx)
- Parameters:
maxx- the maxx to set
-
getMaxy
public String getMaxy()
- Returns:
- the maxy
-
setMaxy
public void setMaxy(String maxy)
- Parameters:
maxy- the maxy to set
-
getCrs
public String getCrs()
- Returns:
- the crs
-
setCrs
public void setCrs(String crs)
- Parameters:
crs- the crs to set
-
-