summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ersb/simpletypes/ErgebnisVollzugStatusTyp.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ersb/simpletypes/ErgebnisVollzugStatusTyp.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ersb/simpletypes/ErgebnisVollzugStatusTyp.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/ersb/simpletypes/ErgebnisVollzugStatusTyp.java b/src/main/java/at/gv/util/xsd/ersb/simpletypes/ErgebnisVollzugStatusTyp.java
new file mode 100644
index 0000000..efd8a6a
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ersb/simpletypes/ErgebnisVollzugStatusTyp.java
@@ -0,0 +1,38 @@
+
+package at.gv.util.xsd.ersb.simpletypes;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for ErgebnisVollzugStatusTyp.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="ErgebnisVollzugStatusTyp">
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * &lt;enumeration value="V"/>
+ * &lt;enumeration value="AZV"/>
+ * &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "ErgebnisVollzugStatusTyp", namespace = "http://statistik.at/namespace/ur/simpleTypes/2#")
+@XmlEnum
+public enum ErgebnisVollzugStatusTyp {
+
+ V,
+ AZV;
+
+ public String value() {
+ return name();
+ }
+
+ public static ErgebnisVollzugStatusTyp fromValue(String v) {
+ return valueOf(v);
+ }
+
+}