package at.gv.util.xsd.ur_V2.simpletypes; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

Java class for VollzugStatusTyp. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="VollzugStatusTyp">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="A"/>
 *     <enumeration value="V"/>
 *     <enumeration value="Z"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "VollzugStatusTyp", namespace = "http://statistik.at/namespace/ur/simpleTypes/2#") @XmlEnum public enum VollzugStatusTyp { A, V, Z; public String value() { return name(); } public static VollzugStatusTyp fromValue(String v) { return valueOf(v); } }