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 LuggageFacilityEnumeration.
|
---|
18 | *
|
---|
19 | * <p>Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
|
---|
20 | * <p>
|
---|
21 | * <pre>
|
---|
22 | * <simpleType name="LuggageFacilityEnumeration">
|
---|
23 | * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
|
---|
24 | * <enumeration value="unknown"/>
|
---|
25 | * <enumeration value="pti23_17"/>
|
---|
26 | * <enumeration value="bikeCarriage"/>
|
---|
27 | * <enumeration value="baggageStorage"/>
|
---|
28 | * <enumeration value="leftLuggage"/>
|
---|
29 | * <enumeration value="porterage"/>
|
---|
30 | * <enumeration value="baggageTrolleys"/>
|
---|
31 | * </restriction>
|
---|
32 | * </simpleType>
|
---|
33 | * </pre>
|
---|
34 | *
|
---|
35 | */
|
---|
36 | @XmlType(name = "LuggageFacilityEnumeration", namespace = "http://www.siri.org.uk/siri")
|
---|
37 | @XmlEnum
|
---|
38 | public enum LuggageFacilityEnumeration {
|
---|
39 |
|
---|
40 | @XmlEnumValue("unknown")
|
---|
41 | UNKNOWN("unknown"),
|
---|
42 | @XmlEnumValue("pti23_17")
|
---|
43 | PTI_23_17("pti23_17"),
|
---|
44 | @XmlEnumValue("bikeCarriage")
|
---|
45 | BIKE_CARRIAGE("bikeCarriage"),
|
---|
46 | @XmlEnumValue("baggageStorage")
|
---|
47 | BAGGAGE_STORAGE("baggageStorage"),
|
---|
48 | @XmlEnumValue("leftLuggage")
|
---|
49 | LEFT_LUGGAGE("leftLuggage"),
|
---|
50 | @XmlEnumValue("porterage")
|
---|
51 | PORTERAGE("porterage"),
|
---|
52 | @XmlEnumValue("baggageTrolleys")
|
---|
53 | BAGGAGE_TROLLEYS("baggageTrolleys");
|
---|
54 | private final String value;
|
---|
55 |
|
---|
56 | LuggageFacilityEnumeration(String v) {
|
---|
57 | value = v;
|
---|
58 | }
|
---|
59 |
|
---|
60 | public String value() {
|
---|
61 | return value;
|
---|
62 | }
|
---|
63 |
|
---|
64 | public static LuggageFacilityEnumeration fromValue(String v) {
|
---|
65 | for (LuggageFacilityEnumeration c: LuggageFacilityEnumeration.values()) {
|
---|
66 | if (c.value.equals(v)) {
|
---|
67 | return c;
|
---|
68 | }
|
---|
69 | }
|
---|
70 | throw new IllegalArgumentException(v);
|
---|
71 | }
|
---|
72 |
|
---|
73 | }
|
---|