Package net.opengis.gml._3
Class EnvelopeType
- java.lang.Object
-
- net.opengis.gml._3.EnvelopeType
-
- All Implemented Interfaces:
Serializable
public class EnvelopeType extends Object implements Serializable
Java class for EnvelopeType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="EnvelopeType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <sequence> <element name="lowerCorner" type="{http://www.opengis.net/gml/3.2}DirectPositionType"/> <element name="upperCorner" type="{http://www.opengis.net/gml/3.2}DirectPositionType"/> </sequence> <element ref="{http://www.opengis.net/gml/3.2}pos" maxOccurs="2" minOccurs="2"/> </choice> <attGroup ref="{http://www.opengis.net/gml/3.2}SRSReferenceGroup"/> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected DirectPositionTypelowerCornerprotected List<DirectPositionType>posprotected BigIntegersrsDimensionprotected StringsrsNameprotected DirectPositionTypeupperCorner
-
Constructor Summary
Constructors Constructor Description EnvelopeType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DirectPositionTypegetLowerCorner()Gets the value of the lowerCorner property.List<DirectPositionType>getPos()Gets the value of the pos property.BigIntegergetSrsDimension()Gets the value of the srsDimension property.StringgetSrsName()Gets the value of the srsName property.DirectPositionTypegetUpperCorner()Gets the value of the upperCorner property.voidsetLowerCorner(DirectPositionType value)Sets the value of the lowerCorner property.voidsetSrsDimension(BigInteger value)Sets the value of the srsDimension property.voidsetSrsName(String value)Sets the value of the srsName property.voidsetUpperCorner(DirectPositionType value)Sets the value of the upperCorner property.
-
-
-
Field Detail
-
pos
protected List<DirectPositionType> pos
-
lowerCorner
protected DirectPositionType lowerCorner
-
upperCorner
protected DirectPositionType upperCorner
-
srsName
protected String srsName
-
srsDimension
protected BigInteger srsDimension
-
-
Method Detail
-
getPos
public List<DirectPositionType> getPos()
Gets the value of the pos property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the pos property.For example, to add a new item, do as follows:
getPos().add(newItem);Objects of the following type(s) are allowed in the list
DirectPositionType
-
getLowerCorner
public DirectPositionType getLowerCorner()
Gets the value of the lowerCorner property.- Returns:
- possible object is
DirectPositionType
-
setLowerCorner
public void setLowerCorner(DirectPositionType value)
Sets the value of the lowerCorner property.- Parameters:
value- allowed object isDirectPositionType
-
getUpperCorner
public DirectPositionType getUpperCorner()
Gets the value of the upperCorner property.- Returns:
- possible object is
DirectPositionType
-
setUpperCorner
public void setUpperCorner(DirectPositionType value)
Sets the value of the upperCorner property.- Parameters:
value- allowed object isDirectPositionType
-
getSrsName
public String getSrsName()
Gets the value of the srsName property.- Returns:
- possible object is
String
-
setSrsName
public void setSrsName(String value)
Sets the value of the srsName property.- Parameters:
value- allowed object isString
-
getSrsDimension
public BigInteger getSrsDimension()
Gets the value of the srsDimension property.- Returns:
- possible object is
BigInteger
-
setSrsDimension
public void setSrsDimension(BigInteger value)
Sets the value of the srsDimension property.- Parameters:
value- allowed object isBigInteger
-
-