org.citygml4j.jaxb.gml._3_1_1
Class DMSAngleType

java.lang.Object
  extended by org.citygml4j.jaxb.gml._3_1_1.DMSAngleType

public class DMSAngleType
extends java.lang.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>
 


Constructor Summary
DMSAngleType()
           
 
Method Summary
 java.math.BigDecimal getDecimalMinutes()
          Gets the value of the decimalMinutes property.
 DegreesType getDegrees()
          Gets the value of the degrees property.
 java.lang.Integer getMinutes()
          Gets the value of the minutes property.
 java.math.BigDecimal getSeconds()
          Gets the value of the seconds property.
 boolean isSetDecimalMinutes()
           
 boolean isSetDegrees()
           
 boolean isSetMinutes()
           
 boolean isSetSeconds()
           
 void setDecimalMinutes(java.math.BigDecimal value)
          Sets the value of the decimalMinutes property.
 void setDegrees(DegreesType value)
          Sets the value of the degrees property.
 void setMinutes(java.lang.Integer value)
          Sets the value of the minutes property.
 void setSeconds(java.math.BigDecimal value)
          Sets the value of the seconds property.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DMSAngleType

public DMSAngleType()
Method Detail

getDegrees

public DegreesType getDegrees()
Gets the value of the degrees property.

Returns:
possible object is DegreesType

setDegrees

public void setDegrees(DegreesType value)
Sets the value of the degrees property.

Parameters:
value - allowed object is DegreesType

isSetDegrees

public boolean isSetDegrees()

getDecimalMinutes

public java.math.BigDecimal getDecimalMinutes()
Gets the value of the decimalMinutes property.

Returns:
possible object is BigDecimal

setDecimalMinutes

public void setDecimalMinutes(java.math.BigDecimal value)
Sets the value of the decimalMinutes property.

Parameters:
value - allowed object is BigDecimal

isSetDecimalMinutes

public boolean isSetDecimalMinutes()

getMinutes

public java.lang.Integer getMinutes()
Gets the value of the minutes property.

Returns:
possible object is Integer

setMinutes

public void setMinutes(java.lang.Integer value)
Sets the value of the minutes property.

Parameters:
value - allowed object is Integer

isSetMinutes

public boolean isSetMinutes()

getSeconds

public java.math.BigDecimal getSeconds()
Gets the value of the seconds property.

Returns:
possible object is BigDecimal

setSeconds

public void setSeconds(java.math.BigDecimal value)
Sets the value of the seconds property.

Parameters:
value - allowed object is BigDecimal

isSetSeconds

public boolean isSetSeconds()