//
// 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.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Definition of a unit of measure (or uom). The definition includes a quantityType property, which indicates the phenomenon to which the units apply, and a catalogSymbol, which gives the short symbol used for this unit. This element is used when the relationship of this unit to other units or units systems is unknown.
*
* <p>Java-Klasse für UnitDefinitionType complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType name="UnitDefinitionType">
* <complexContent>
* <extension base="{http://www.opengis.net/gml}DefinitionType">
* <sequence>
* <element ref="{http://www.opengis.net/gml}quantityType"/>
* <element ref="{http://www.opengis.net/gml}catalogSymbol" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UnitDefinitionType", propOrder = {
"quantityType",
"catalogSymbol"
})
@XmlSeeAlso({
BaseUnitType.class,
ConventionalUnitType.class,
DerivedUnitType.class
})
public class UnitDefinitionType
extends DefinitionType
{
@XmlElement(required = true)
protected StringOrRefType quantityType;
protected CodeType catalogSymbol;
/**
* Ruft den Wert der quantityType-Eigenschaft ab.
*
* @return
* possible object is
* {@link StringOrRefType }
*
*/
public StringOrRefType getQuantityType() {
return quantityType;
}
/**
* Legt den Wert der quantityType-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link StringOrRefType }
*
*/
public void setQuantityType(StringOrRefType value) {
this.quantityType = value;
}
public boolean isSetQuantityType() {
return (this.quantityType!= null);
}
/**
* Ruft den Wert der catalogSymbol-Eigenschaft ab.
*
* @return
* possible object is
* {@link CodeType }
*
*/
public CodeType getCatalogSymbol() {
return catalogSymbol;
}
/**
* Legt den Wert der catalogSymbol-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link CodeType }
*
*/
public void setCatalogSymbol(CodeType value) {
this.catalogSymbol = value;
}
public boolean isSetCatalogSymbol() {
return (this.catalogSymbol!= null);
}
}