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