From f71531346c6be197957311712ba093e024545e37 Mon Sep 17 00:00:00 2001 From: Florian Reimair Date: Fri, 7 Aug 2015 13:24:09 +0200 Subject: preparing the old code for the merge --- .../diplomasupplement/ModeOfDeliveryType.java | 64 +++++++++++----------- 1 file changed, 32 insertions(+), 32 deletions(-) (limited to 'id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/ModeOfDeliveryType.java') diff --git a/id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/ModeOfDeliveryType.java b/id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/ModeOfDeliveryType.java index 762ba0e99..23a4152de 100644 --- a/id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/ModeOfDeliveryType.java +++ b/id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/ModeOfDeliveryType.java @@ -5,19 +5,20 @@ // Generated on: 2014.04.12 at 12:22:50 PM GMT // - package eu.stork.peps.complex.attributes.crue.academic.xsd.language.diplomasupplement; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; - /** - *

Java class for ModeOfDeliveryType. + *

+ * Java class for ModeOfDeliveryType. * - *

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

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

+ * *

  * <simpleType name="ModeOfDeliveryType">
  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
@@ -32,37 +33,36 @@ import javax.xml.bind.annotation.XmlType;
 @XmlEnum
 public enum ModeOfDeliveryType {
 
+	/**
+	 * Face-to-face
+	 * 
+	 */
+	@XmlEnumValue("FaceToFace")
+	FACE_TO_FACE("FaceToFace"),
 
-    /**
-     * Face-to-face
-     * 
-     */
-    @XmlEnumValue("FaceToFace")
-    FACE_TO_FACE("FaceToFace"),
-
-    /**
-     * Distance learning
-     * 
-     */
-    @XmlEnumValue("DistanceLearning")
-    DISTANCE_LEARNING("DistanceLearning");
-    private final String value;
+	/**
+	 * Distance learning
+	 * 
+	 */
+	@XmlEnumValue("DistanceLearning")
+	DISTANCE_LEARNING("DistanceLearning");
+	private final String value;
 
-    ModeOfDeliveryType(String v) {
-        value = v;
-    }
+	ModeOfDeliveryType(String v) {
+		value = v;
+	}
 
-    public String value() {
-        return value;
-    }
+	public String value() {
+		return value;
+	}
 
-    public static ModeOfDeliveryType fromValue(String v) {
-        for (ModeOfDeliveryType c: ModeOfDeliveryType.values()) {
-            if (c.value.equals(v)) {
-                return c;
-            }
-        }
-        throw new IllegalArgumentException(v);
-    }
+	public static ModeOfDeliveryType fromValue(String v) {
+		for (ModeOfDeliveryType c : ModeOfDeliveryType.values()) {
+			if (c.value.equals(v)) {
+				return c;
+			}
+		}
+		throw new IllegalArgumentException(v);
+	}
 
 }
-- 
cgit v1.2.3