Package net.opengis.gml311
Interface CoordinatesType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
CoordinatesTypeImpl
public interface CoordinatesType extends EObject
A representation of the model object 'Coordinates Type'. Tables or arrays of tuples. May be used for text-encoding of values from a table. Actually just a string, but allows the user to indicate which characters are used as separators. The value of the 'cs' attribute is the separator for coordinate values, and the value of the 'ts' attribute gives the tuple separator (a single space by default); the default values may be changed to reflect local usage. Defaults to CSV within a tuple, space between tuples. However, any string content will be schema-valid.The following features are supported:
- See Also:
Gml311Package.getCoordinatesType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCs()
Returns the value of the 'Cs' attribute.String
getDecimal()
Returns the value of the 'Decimal' attribute.String
getTs()
Returns the value of the 'Ts' attribute.String
getValue()
Returns the value of the 'Value' attribute.boolean
isSetCs()
Returns whether the value of the 'Cs
' attribute is set.boolean
isSetDecimal()
Returns whether the value of the 'Decimal
' attribute is set.boolean
isSetTs()
Returns whether the value of the 'Ts
' attribute is set.void
setCs(String value)
Sets the value of the 'Cs
' attribute.void
setDecimal(String value)
Sets the value of the 'Decimal
' attribute.void
setTs(String value)
Sets the value of the 'Ts
' attribute.void
setValue(String value)
Sets the value of the 'Value
' attribute.void
unsetCs()
Unsets the value of the 'Cs
' attribute.void
unsetDecimal()
Unsets the value of the 'Decimal
' attribute.void
unsetTs()
Unsets the value of the 'Ts
' attribute.
-
-
-
Method Detail
-
getValue
String getValue()
Returns the value of the 'Value' attribute.If the meaning of the 'Value' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Value' attribute.
- See Also:
setValue(String)
,Gml311Package.getCoordinatesType_Value()
-
setValue
void setValue(String value)
Sets the value of the 'Value
' attribute.- Parameters:
value
- the new value of the 'Value' attribute.- See Also:
getValue()
-
getCs
String getCs()
Returns the value of the 'Cs' attribute. The default value is","
.If the meaning of the 'Cs' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Cs' attribute.
- See Also:
isSetCs()
,unsetCs()
,setCs(String)
,Gml311Package.getCoordinatesType_Cs()
-
unsetCs
void unsetCs()
Unsets the value of the 'Cs
' attribute.- See Also:
isSetCs()
,getCs()
,setCs(String)
-
isSetCs
boolean isSetCs()
Returns whether the value of the 'Cs
' attribute is set.- Returns:
- whether the value of the 'Cs' attribute is set.
- See Also:
unsetCs()
,getCs()
,setCs(String)
-
getDecimal
String getDecimal()
Returns the value of the 'Decimal' attribute. The default value is"."
.If the meaning of the 'Decimal' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Decimal' attribute.
- See Also:
isSetDecimal()
,unsetDecimal()
,setDecimal(String)
,Gml311Package.getCoordinatesType_Decimal()
-
setDecimal
void setDecimal(String value)
Sets the value of the 'Decimal
' attribute.- Parameters:
value
- the new value of the 'Decimal' attribute.- See Also:
isSetDecimal()
,unsetDecimal()
,getDecimal()
-
unsetDecimal
void unsetDecimal()
Unsets the value of the 'Decimal
' attribute.- See Also:
isSetDecimal()
,getDecimal()
,setDecimal(String)
-
isSetDecimal
boolean isSetDecimal()
Returns whether the value of the 'Decimal
' attribute is set.- Returns:
- whether the value of the 'Decimal' attribute is set.
- See Also:
unsetDecimal()
,getDecimal()
,setDecimal(String)
-
getTs
String getTs()
Returns the value of the 'Ts' attribute. The default value is" "
.If the meaning of the 'Ts' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Ts' attribute.
- See Also:
isSetTs()
,unsetTs()
,setTs(String)
,Gml311Package.getCoordinatesType_Ts()
-
unsetTs
void unsetTs()
Unsets the value of the 'Ts
' attribute.- See Also:
isSetTs()
,getTs()
,setTs(String)
-
isSetTs
boolean isSetTs()
Returns whether the value of the 'Ts
' attribute is set.- Returns:
- whether the value of the 'Ts' attribute is set.
- See Also:
unsetTs()
,getTs()
,setTs(String)
-
-