Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Direction |
|
| 0.0;0 |
1 | // | |
2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 | |
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: 2009.07.19 at 09:49:41 PM CDT | |
6 | // | |
7 | ||
8 | ||
9 | package org.apache.ws.scout.model.uddi.v2; | |
10 | ||
11 | import javax.xml.bind.annotation.XmlEnum; | |
12 | import javax.xml.bind.annotation.XmlEnumValue; | |
13 | import javax.xml.bind.annotation.XmlType; | |
14 | ||
15 | ||
16 | /** | |
17 | * <p>Java class for direction. | |
18 | * | |
19 | * <p>The following schema fragment specifies the expected content contained within this class. | |
20 | * <p> | |
21 | * <pre> | |
22 | * <simpleType name="direction"> | |
23 | * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> | |
24 | * <enumeration value="fromKey"/> | |
25 | * <enumeration value="toKey"/> | |
26 | * </restriction> | |
27 | * </simpleType> | |
28 | * </pre> | |
29 | * | |
30 | */ | |
31 | 0 | @XmlType(name = "direction") |
32 | @XmlEnum | |
33 | public enum Direction { | |
34 | ||
35 | 0 | @XmlEnumValue("fromKey") |
36 | FROM_KEY("fromKey"), | |
37 | 0 | @XmlEnumValue("toKey") |
38 | TO_KEY("toKey"); | |
39 | private final String value; | |
40 | ||
41 | 0 | Direction(String v) { |
42 | 0 | value = v; |
43 | 0 | } |
44 | ||
45 | public String value() { | |
46 | 0 | return value; |
47 | } | |
48 | ||
49 | public static Direction fromValue(String v) { | |
50 | 0 | for (Direction c: Direction.values()) { |
51 | 0 | if (c.value.equals(v)) { |
52 | 0 | return c; |
53 | } | |
54 | } | |
55 | 0 | throw new IllegalArgumentException(v); |
56 | } | |
57 | ||
58 | } |