// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.08.10 um 09:13:50 PM CEST // package net.opengis.gml; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * 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. * * <p>Java-Klasse für CoordinatesType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <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> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CoordinatesType", propOrder = { "value" }) public class CoordinatesType { @XmlValue protected String value; @XmlAttribute(name = "decimal") protected String decimal; @XmlAttribute(name = "cs") protected String cs; @XmlAttribute(name = "ts") protected String ts; /** * Ruft den Wert der value-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } public boolean isSetValue() { return (this.value!= null); } /** * Ruft den Wert der decimal-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getDecimal() { if (decimal == null) { return "."; } else { return decimal; } } /** * Legt den Wert der decimal-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setDecimal(String value) { this.decimal = value; } public boolean isSetDecimal() { return (this.decimal!= null); } /** * Ruft den Wert der cs-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getCs() { if (cs == null) { return ","; } else { return cs; } } /** * Legt den Wert der cs-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setCs(String value) { this.cs = value; } public boolean isSetCs() { return (this.cs!= null); } /** * Ruft den Wert der ts-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getTs() { if (ts == null) { return " "; } else { return ts; } } /** * Legt den Wert der ts-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setTs(String value) { this.ts = value; } public boolean isSetTs() { return (this.ts!= null); } }