summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ersb/simpletypes/VollzugStatusTyp.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ersb/simpletypes/VollzugStatusTyp.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ersb/simpletypes/VollzugStatusTyp.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/ersb/simpletypes/VollzugStatusTyp.java b/src/main/java/at/gv/util/xsd/ersb/simpletypes/VollzugStatusTyp.java
new file mode 100644
index 0000000..67810e0
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ersb/simpletypes/VollzugStatusTyp.java
@@ -0,0 +1,40 @@
+
+package at.gv.util.xsd.ersb.simpletypes;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for VollzugStatusTyp.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="VollzugStatusTyp">
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * &lt;enumeration value="A"/>
+ * &lt;enumeration value="V"/>
+ * &lt;enumeration value="Z"/>
+ * &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ *
+ */
+@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);
+ }
+
+}