Package net.opengis.gml._3
Class CoordinatesType
- java.lang.Object
-
- net.opengis.gml._3.CoordinatesType
-
- All Implemented Interfaces:
Serializable
public class CoordinatesType extends Object implements Serializable
This type is deprecated for tuples with ordinate values that are numbers. CoordinatesType is a text string, intended to be used to record an array of tuples or coordinates. While it is not possible to enforce the internal structure of the string through schema validation, some optional attributes have been provided in previous versions of GML to support a description of the internal structure. These attributes are deprecated. The attributes were intended to be used as follows: Decimal symbol used for a decimal point (default="." a stop or period) cs symbol used to separate components within a tuple or coordinate string (default="," a comma) ts symbol used to separate tuples or coordinate strings (default=" " a space) Since it is based on the XML Schema string type, CoordinatesType may be used in the construction of tables of tuples or arrays of tuples, including ones that contain mixed text and numeric values.Java class for CoordinatesType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CoordinatesType"> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>string"> <attribute name="decimal" type="{http://www.w3.org/2001/XMLSchema}string" default="." /> <attribute name="cs" type="{http://www.w3.org/2001/XMLSchema}string" default="," /> <attribute name="ts" type="{http://www.w3.org/2001/XMLSchema}string" default=" " /> </extension> </simpleContent> </complexType>- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CoordinatesType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCs()Gets the value of the cs property.StringgetDecimal()Gets the value of the decimal property.StringgetTs()Gets the value of the ts property.StringgetValue()Gets the value of the value property.voidsetCs(String value)Sets the value of the cs property.voidsetDecimal(String value)Sets the value of the decimal property.voidsetTs(String value)Sets the value of the ts property.voidsetValue(String value)Sets the value of the value property.
-
-
-
Method Detail
-
getValue
public String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
public void setValue(String value)
Sets the value of the value property.- Parameters:
value- allowed object isString
-
getDecimal
public String getDecimal()
Gets the value of the decimal property.- Returns:
- possible object is
String
-
setDecimal
public void setDecimal(String value)
Sets the value of the decimal property.- Parameters:
value- allowed object isString
-
setCs
public void setCs(String value)
Sets the value of the cs property.- Parameters:
value- allowed object isString
-
-