aboutsummaryrefslogtreecommitdiff
path: root/id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/ECTSGradingScaleType.java
diff options
context:
space:
mode:
Diffstat (limited to 'id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/ECTSGradingScaleType.java')
-rw-r--r--id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/ECTSGradingScaleType.java90
1 files changed, 0 insertions, 90 deletions
diff --git a/id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/ECTSGradingScaleType.java b/id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/ECTSGradingScaleType.java
deleted file mode 100644
index 7916ead8d..000000000
--- a/id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/ECTSGradingScaleType.java
+++ /dev/null
@@ -1,90 +0,0 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// 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.XmlType;
-
-/**
- * <p>
- * Java class for ECTSGradingScaleType.
- *
- * <p>
- * The following schema fragment specifies the expected content contained within this class.
- * <p>
- *
- * <pre>
- * &lt;simpleType name="ECTSGradingScaleType">
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * &lt;enumeration value="A"/>
- * &lt;enumeration value="B"/>
- * &lt;enumeration value="C"/>
- * &lt;enumeration value="D"/>
- * &lt;enumeration value="E"/>
- * &lt;enumeration value="FX"/>
- * &lt;enumeration value="F"/>
- * &lt;/restriction>
- * &lt;/simpleType>
- * </pre>
- *
- */
-@XmlType(name = "ECTSGradingScaleType")
-@XmlEnum
-public enum ECTSGradingScaleType {
-
- /**
- * Top 10%
- *
- */
- A,
-
- /**
- * Next 25%
- *
- */
- B,
-
- /**
- * Next 30%
- *
- */
- C,
-
- /**
- * Next 25%
- *
- */
- D,
-
- /**
- * Lowest 10%
- *
- */
- E,
-
- /**
- * Fail
- *
- */
- FX,
-
- /**
- * Fail
- *
- */
- F;
-
- public String value() {
- return name();
- }
-
- public static ECTSGradingScaleType fromValue(String v) {
- return valueOf(v);
- }
-
-}