Package nl.b3p.csw.jaxb.gml
Class DMSAngleType
- java.lang.Object
-
- nl.b3p.csw.jaxb.gml.DMSAngleType
-
public class DMSAngleType extends Object
Angle value provided in degree-minute-second or degree-minute format.Java class for DMSAngleType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DMSAngleType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.opengis.net/gml}degrees"/> <choice minOccurs="0"> <element ref="{http://www.opengis.net/gml}decimalMinutes"/> <sequence> <element ref="{http://www.opengis.net/gml}minutes"/> <element ref="{http://www.opengis.net/gml}seconds" minOccurs="0"/> </sequence> </choice> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected DecimalMinutesdecimalMinutesprotected Degreesdegreesprotected Minutesminutesprotected Secondsseconds
-
Constructor Summary
Constructors Constructor Description DMSAngleType()Default no-arg constructorDMSAngleType(Degrees degrees, DecimalMinutes decimalMinutes, Minutes minutes, Seconds seconds)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DecimalMinutesgetDecimalMinutes()Gets the value of the decimalMinutes property.DegreesgetDegrees()Gets the value of the degrees property.MinutesgetMinutes()Gets the value of the minutes property.SecondsgetSeconds()Gets the value of the seconds property.voidsetDecimalMinutes(DecimalMinutes value)Sets the value of the decimalMinutes property.voidsetDegrees(Degrees value)Sets the value of the degrees property.voidsetMinutes(Minutes value)Sets the value of the minutes property.voidsetSeconds(Seconds value)Sets the value of the seconds property.
-
-
-
Field Detail
-
degrees
protected Degrees degrees
-
decimalMinutes
protected DecimalMinutes decimalMinutes
-
minutes
protected Minutes minutes
-
seconds
protected Seconds seconds
-
-
Constructor Detail
-
DMSAngleType
public DMSAngleType()
Default no-arg constructor
-
DMSAngleType
public DMSAngleType(Degrees degrees, DecimalMinutes decimalMinutes, Minutes minutes, Seconds seconds)
Fully-initialising value constructor
-
-
Method Detail
-
getDegrees
public Degrees getDegrees()
Gets the value of the degrees property.- Returns:
- possible object is
Degrees
-
setDegrees
public void setDegrees(Degrees value)
Sets the value of the degrees property.- Parameters:
value- allowed object isDegrees
-
getDecimalMinutes
public DecimalMinutes getDecimalMinutes()
Gets the value of the decimalMinutes property.- Returns:
- possible object is
DecimalMinutes
-
setDecimalMinutes
public void setDecimalMinutes(DecimalMinutes value)
Sets the value of the decimalMinutes property.- Parameters:
value- allowed object isDecimalMinutes
-
getMinutes
public Minutes getMinutes()
Gets the value of the minutes property.- Returns:
- possible object is
Minutes
-
setMinutes
public void setMinutes(Minutes value)
Sets the value of the minutes property.- Parameters:
value- allowed object isMinutes
-
getSeconds
public Seconds getSeconds()
Gets the value of the seconds property.- Returns:
- possible object is
Seconds
-
-