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 PassengerInformationFacilityEnumeration.
|
---|
18 | *
|
---|
19 | * <p>Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
|
---|
20 | * <p>
|
---|
21 | * <pre>
|
---|
22 | * <simpleType name="PassengerInformationFacilityEnumeration">
|
---|
23 | * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
|
---|
24 | * <enumeration value="unknown"/>
|
---|
25 | * <enumeration value="nextStopIndicator"/>
|
---|
26 | * <enumeration value="stopAnnouncements"/>
|
---|
27 | * <enumeration value="passengerInformationDisplay"/>
|
---|
28 | * <enumeration value="audioInformation"/>
|
---|
29 | * <enumeration value="visualInformation"/>
|
---|
30 | * <enumeration value="tactilePlatformEdges"/>
|
---|
31 | * <enumeration value="tactileInformation"/>
|
---|
32 | * <enumeration value="walkingGuidance"/>
|
---|
33 | * <enumeration value="journeyPlanning"/>
|
---|
34 | * <enumeration value="lostFound"/>
|
---|
35 | * <enumeration value="informationDesk"/>
|
---|
36 | * <enumeration value="interactiveKiosk-Display"/>
|
---|
37 | * <enumeration value="printedPublicNotice"/>
|
---|
38 | * </restriction>
|
---|
39 | * </simpleType>
|
---|
40 | * </pre>
|
---|
41 | *
|
---|
42 | */
|
---|
43 | @XmlType(name = "PassengerInformationFacilityEnumeration", namespace = "http://www.siri.org.uk/siri")
|
---|
44 | @XmlEnum
|
---|
45 | public enum PassengerInformationFacilityEnumeration {
|
---|
46 |
|
---|
47 | @XmlEnumValue("unknown")
|
---|
48 | UNKNOWN("unknown"),
|
---|
49 | @XmlEnumValue("nextStopIndicator")
|
---|
50 | NEXT_STOP_INDICATOR("nextStopIndicator"),
|
---|
51 | @XmlEnumValue("stopAnnouncements")
|
---|
52 | STOP_ANNOUNCEMENTS("stopAnnouncements"),
|
---|
53 | @XmlEnumValue("passengerInformationDisplay")
|
---|
54 | PASSENGER_INFORMATION_DISPLAY("passengerInformationDisplay"),
|
---|
55 | @XmlEnumValue("audioInformation")
|
---|
56 | AUDIO_INFORMATION("audioInformation"),
|
---|
57 | @XmlEnumValue("visualInformation")
|
---|
58 | VISUAL_INFORMATION("visualInformation"),
|
---|
59 | @XmlEnumValue("tactilePlatformEdges")
|
---|
60 | TACTILE_PLATFORM_EDGES("tactilePlatformEdges"),
|
---|
61 | @XmlEnumValue("tactileInformation")
|
---|
62 | TACTILE_INFORMATION("tactileInformation"),
|
---|
63 | @XmlEnumValue("walkingGuidance")
|
---|
64 | WALKING_GUIDANCE("walkingGuidance"),
|
---|
65 | @XmlEnumValue("journeyPlanning")
|
---|
66 | JOURNEY_PLANNING("journeyPlanning"),
|
---|
67 | @XmlEnumValue("lostFound")
|
---|
68 | LOST_FOUND("lostFound"),
|
---|
69 | @XmlEnumValue("informationDesk")
|
---|
70 | INFORMATION_DESK("informationDesk"),
|
---|
71 | @XmlEnumValue("interactiveKiosk-Display")
|
---|
72 | INTERACTIVE_KIOSK_DISPLAY("interactiveKiosk-Display"),
|
---|
73 | @XmlEnumValue("printedPublicNotice")
|
---|
74 | PRINTED_PUBLIC_NOTICE("printedPublicNotice");
|
---|
75 | private final String value;
|
---|
76 |
|
---|
77 | PassengerInformationFacilityEnumeration(String v) {
|
---|
78 | value = v;
|
---|
79 | }
|
---|
80 |
|
---|
81 | public String value() {
|
---|
82 | return value;
|
---|
83 | }
|
---|
84 |
|
---|
85 | public static PassengerInformationFacilityEnumeration fromValue(String v) {
|
---|
86 | for (PassengerInformationFacilityEnumeration c: PassengerInformationFacilityEnumeration.values()) {
|
---|
87 | if (c.value.equals(v)) {
|
---|
88 | return c;
|
---|
89 | }
|
---|
90 | }
|
---|
91 | throw new IllegalArgumentException(v);
|
---|
92 | }
|
---|
93 |
|
---|
94 | }
|
---|