// // 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 java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * List of numbers with a uniform scale. * A member of the list may be a typed null. * The value of uom (Units Of Measure) attribute is a reference to * a Reference System for the amount, either a ratio or position scale. * * <p>Java-Klasse für MeasureOrNullListType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="MeasureOrNullListType"> * <simpleContent> * <extension base="<http://www.opengis.net/gml>doubleOrNullList"> * <attribute name="uom" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MeasureOrNullListType", propOrder = { "value" }) @XmlSeeAlso({ QuantityExtentType.class }) public class MeasureOrNullListType { @XmlValue protected List<String> value; @XmlAttribute(name = "uom", required = true) @XmlSchemaType(name = "anyURI") protected String uom; /** * XML List based on the union type defined above. An element declared with this type contains a space-separated list of double values with null values interspersed as needed Gets the value of the value property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the value property. * * <p> * For example, to add a new item, do as follows: * <pre> * getValue().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getValue() { if (value == null) { value = new ArrayList<String>(); } return this.value; } public boolean isSetValue() { return ((this.value!= null)&&(!this.value.isEmpty())); } public void unsetValue() { this.value = null; } /** * Ruft den Wert der uom-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getUom() { return uom; } /** * Legt den Wert der uom-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setUom(String value) { this.uom = value; } public boolean isSetUom() { return (this.uom!= null); } public void setValue(List<String> value) { this.value = value; } }