| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| With |
|
| 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 With. | |
| 17 | * | |
| 18 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 19 | * <p> | |
| 20 | * <pre> | |
| 21 | * <simpleType name="With"> | |
| 22 | * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> | |
| 23 | * <enumeration value="NEXT"/> | |
| 24 | * <enumeration value="PREVIOUS"/> | |
| 25 | * </restriction> | |
| 26 | * </simpleType> | |
| 27 | * </pre> | |
| 28 | * | |
| 29 | */ | |
| 30 | 2 | @XmlType(name = "With") |
| 31 | @XmlEnum | |
| 32 | 2 | public enum With { |
| 33 | ||
| 34 | 1 | NEXT, |
| 35 | 1 | PREVIOUS; |
| 36 | ||
| 37 | public String value() { | |
| 38 | 0 | return name(); |
| 39 | } | |
| 40 | ||
| 41 | public static With fromValue(String v) { | |
| 42 | 0 | return valueOf(v); |
| 43 | } | |
| 44 | ||
| 45 | } |