Package net.wirelabs.jmaps.example.gpx
Class BoundsType
- java.lang.Object
-
- net.wirelabs.jmaps.example.gpx.BoundsType
-
public class BoundsType extends Object
Two lat/lon pairs defining the extent of an element.Java class for boundsType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="boundsType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="minlat" use="required" type="{http://www.topografix.com/GPX/1/1}latitudeType" /> <attribute name="minlon" use="required" type="{http://www.topografix.com/GPX/1/1}longitudeType" /> <attribute name="maxlat" use="required" type="{http://www.topografix.com/GPX/1/1}latitudeType" /> <attribute name="maxlon" use="required" type="{http://www.topografix.com/GPX/1/1}longitudeType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BigDecimalmaxlatprotected BigDecimalmaxlonprotected BigDecimalminlatprotected BigDecimalminlon
-
Constructor Summary
Constructors Constructor Description BoundsType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimalgetMaxlat()Gets the value of the maxlat property.BigDecimalgetMaxlon()Gets the value of the maxlon property.BigDecimalgetMinlat()Gets the value of the minlat property.BigDecimalgetMinlon()Gets the value of the minlon property.voidsetMaxlat(BigDecimal value)Sets the value of the maxlat property.voidsetMaxlon(BigDecimal value)Sets the value of the maxlon property.voidsetMinlat(BigDecimal value)Sets the value of the minlat property.voidsetMinlon(BigDecimal value)Sets the value of the minlon property.
-
-
-
Field Detail
-
minlat
protected BigDecimal minlat
-
minlon
protected BigDecimal minlon
-
maxlat
protected BigDecimal maxlat
-
maxlon
protected BigDecimal maxlon
-
-
Method Detail
-
getMinlat
public BigDecimal getMinlat()
Gets the value of the minlat property.- Returns:
- possible object is
BigDecimal
-
setMinlat
public void setMinlat(BigDecimal value)
Sets the value of the minlat property.- Parameters:
value- allowed object isBigDecimal
-
getMinlon
public BigDecimal getMinlon()
Gets the value of the minlon property.- Returns:
- possible object is
BigDecimal
-
setMinlon
public void setMinlon(BigDecimal value)
Sets the value of the minlon property.- Parameters:
value- allowed object isBigDecimal
-
getMaxlat
public BigDecimal getMaxlat()
Gets the value of the maxlat property.- Returns:
- possible object is
BigDecimal
-
setMaxlat
public void setMaxlat(BigDecimal value)
Sets the value of the maxlat property.- Parameters:
value- allowed object isBigDecimal
-
getMaxlon
public BigDecimal getMaxlon()
Gets the value of the maxlon property.- Returns:
- possible object is
BigDecimal
-
setMaxlon
public void setMaxlon(BigDecimal value)
Sets the value of the maxlon property.- Parameters:
value- allowed object isBigDecimal
-
-