1 | //
|
---|
2 | // Ce fichier a été généré par l'implémentation de référence JavaTM Architecture for XML Binding (JAXB), v2.2.5
|
---|
3 | // Voir <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
---|
4 | // Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source.
|
---|
5 | // Généré le : 2012.03.08 à 06:24:59 PM CET
|
---|
6 | //
|
---|
7 |
|
---|
8 |
|
---|
9 | package neptune;
|
---|
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>Classe Java pour ReservedSpaceFacilityEnumeration.
|
---|
18 | *
|
---|
19 | * <p>Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
|
---|
20 | * <p>
|
---|
21 | * <pre>
|
---|
22 | * <simpleType name="ReservedSpaceFacilityEnumeration">
|
---|
23 | * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
|
---|
24 | * <enumeration value="unknown"/>
|
---|
25 | * <enumeration value="lounge"/>
|
---|
26 | * <enumeration value="hall"/>
|
---|
27 | * <enumeration value="meetingpoint"/>
|
---|
28 | * <enumeration value="groupPoint"/>
|
---|
29 | * <enumeration value="reception"/>
|
---|
30 | * <enumeration value="shelter"/>
|
---|
31 | * <enumeration value="seats"/>
|
---|
32 | * </restriction>
|
---|
33 | * </simpleType>
|
---|
34 | * </pre>
|
---|
35 | *
|
---|
36 | */
|
---|
37 | @XmlType(name = "ReservedSpaceFacilityEnumeration", namespace = "http://www.siri.org.uk/siri")
|
---|
38 | @XmlEnum
|
---|
39 | public enum ReservedSpaceFacilityEnumeration {
|
---|
40 |
|
---|
41 | @XmlEnumValue("unknown")
|
---|
42 | UNKNOWN("unknown"),
|
---|
43 | @XmlEnumValue("lounge")
|
---|
44 | LOUNGE("lounge"),
|
---|
45 | @XmlEnumValue("hall")
|
---|
46 | HALL("hall"),
|
---|
47 | @XmlEnumValue("meetingpoint")
|
---|
48 | MEETINGPOINT("meetingpoint"),
|
---|
49 | @XmlEnumValue("groupPoint")
|
---|
50 | GROUP_POINT("groupPoint"),
|
---|
51 | @XmlEnumValue("reception")
|
---|
52 | RECEPTION("reception"),
|
---|
53 | @XmlEnumValue("shelter")
|
---|
54 | SHELTER("shelter"),
|
---|
55 | @XmlEnumValue("seats")
|
---|
56 | SEATS("seats");
|
---|
57 | private final String value;
|
---|
58 |
|
---|
59 | ReservedSpaceFacilityEnumeration(String v) {
|
---|
60 | value = v;
|
---|
61 | }
|
---|
62 |
|
---|
63 | public String value() {
|
---|
64 | return value;
|
---|
65 | }
|
---|
66 |
|
---|
67 | public static ReservedSpaceFacilityEnumeration fromValue(String v) {
|
---|
68 | for (ReservedSpaceFacilityEnumeration c: ReservedSpaceFacilityEnumeration.values()) {
|
---|
69 | if (c.value.equals(v)) {
|
---|
70 | return c;
|
---|
71 | }
|
---|
72 | }
|
---|
73 | throw new IllegalArgumentException(v);
|
---|
74 | }
|
---|
75 |
|
---|
76 | }
|
---|