Package net.opengis.gml311
Interface DMSAngleType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
DMSAngleTypeImpl
public interface DMSAngleType extends EObject
A representation of the model object 'DMS Angle Type'. Angle value provided in degree-minute-second or degree-minute format.The following features are supported:
- See Also:
Gml311Package.getDMSAngleType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BigDecimal
getDecimalMinutes()
Returns the value of the 'Decimal Minutes' attribute.DegreesType
getDegrees()
Returns the value of the 'Degrees' containment reference.BigInteger
getMinutes()
Returns the value of the 'Minutes' attribute.BigDecimal
getSeconds()
Returns the value of the 'Seconds' attribute.void
setDecimalMinutes(BigDecimal value)
Sets the value of the 'Decimal Minutes
' attribute.void
setDegrees(DegreesType value)
Sets the value of the 'Degrees
' containment reference.void
setMinutes(BigInteger value)
Sets the value of the 'Minutes
' attribute.void
setSeconds(BigDecimal value)
Sets the value of the 'Seconds
' attribute.
-
-
-
Method Detail
-
getDegrees
DegreesType getDegrees()
Returns the value of the 'Degrees' containment reference.If the meaning of the 'Degrees' containment reference isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Degrees' containment reference.
- See Also:
setDegrees(DegreesType)
,Gml311Package.getDMSAngleType_Degrees()
-
setDegrees
void setDegrees(DegreesType value)
Sets the value of the 'Degrees
' containment reference.- Parameters:
value
- the new value of the 'Degrees' containment reference.- See Also:
getDegrees()
-
getDecimalMinutes
BigDecimal getDecimalMinutes()
Returns the value of the 'Decimal Minutes' attribute.If the meaning of the 'Decimal Minutes' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Decimal Minutes' attribute.
- See Also:
setDecimalMinutes(BigDecimal)
,Gml311Package.getDMSAngleType_DecimalMinutes()
-
setDecimalMinutes
void setDecimalMinutes(BigDecimal value)
Sets the value of the 'Decimal Minutes
' attribute.- Parameters:
value
- the new value of the 'Decimal Minutes' attribute.- See Also:
getDecimalMinutes()
-
getMinutes
BigInteger getMinutes()
Returns the value of the 'Minutes' attribute.If the meaning of the 'Minutes' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Minutes' attribute.
- See Also:
setMinutes(BigInteger)
,Gml311Package.getDMSAngleType_Minutes()
-
setMinutes
void setMinutes(BigInteger value)
Sets the value of the 'Minutes
' attribute.- Parameters:
value
- the new value of the 'Minutes' attribute.- See Also:
getMinutes()
-
getSeconds
BigDecimal getSeconds()
Returns the value of the 'Seconds' attribute.If the meaning of the 'Seconds' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Seconds' attribute.
- See Also:
setSeconds(BigDecimal)
,Gml311Package.getDMSAngleType_Seconds()
-
setSeconds
void setSeconds(BigDecimal value)
Sets the value of the 'Seconds
' attribute.- Parameters:
value
- the new value of the 'Seconds' attribute.- See Also:
getSeconds()
-
-