Package nl.b3p.csw.jaxb.gml
Class CoordinatesType
- java.lang.Object
-
- nl.b3p.csw.jaxb.gml.CoordinatesType
-
public class CoordinatesType extends Object
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.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>
-
-
Constructor Summary
Constructors Constructor Description CoordinatesType()Default no-arg constructorCoordinatesType(String value, String decimal, String cs, String ts)Fully-initialising value constructor
-
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
-
-