| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Which |
|
| 1.0;1 |
| 1 | // | |
| 2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 | |
| 3 | // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | |
| 4 | // Any modifications to this file will be lost upon recompilation of the source schema. | |
| 5 | // Generated on: 2015.04.14 at 06:59:39 PM CEST | |
| 6 | // | |
| 7 | ||
| 8 | ||
| 9 | package de.jollyday.config; | |
| 10 | ||
| 11 | import javax.xml.bind.annotation.XmlEnum; | |
| 12 | import javax.xml.bind.annotation.XmlType; | |
| 13 | ||
| 14 | ||
| 15 | /** | |
| 16 | * <p>Java class for Which. | |
| 17 | * | |
| 18 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 19 | * <p> | |
| 20 | * <pre> | |
| 21 | * <simpleType name="Which"> | |
| 22 | * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> | |
| 23 | * <enumeration value="FIRST"/> | |
| 24 | * <enumeration value="SECOND"/> | |
| 25 | * <enumeration value="THIRD"/> | |
| 26 | * <enumeration value="LAST"/> | |
| 27 | * <enumeration value="FOURTH"/> | |
| 28 | * </restriction> | |
| 29 | * </simpleType> | |
| 30 | * </pre> | |
| 31 | * | |
| 32 | */ | |
| 33 | 4 | @XmlType(name = "Which") |
| 34 | @XmlEnum | |
| 35 | 5 | public enum Which { |
| 36 | ||
| 37 | 1 | FIRST, |
| 38 | 1 | SECOND, |
| 39 | 1 | THIRD, |
| 40 | 1 | LAST, |
| 41 | 1 | FOURTH; |
| 42 | ||
| 43 | public String value() { | |
| 44 | 0 | return name(); |
| 45 | } | |
| 46 | ||
| 47 | public static Which fromValue(String v) { | |
| 48 | 0 | return valueOf(v); |
| 49 | } | |
| 50 | ||
| 51 | } |