source: osm/applications/editors/josm/plugins/opendata/includes/neptune/NuisanceFacilityEnumeration.java@ 28018

Last change on this file since 28018 was 28018, checked in by donvip, 13 years ago

opendata: Initial Neptune files support

File size: 2.1 KB
Line 
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
9package neptune;
10
11import javax.xml.bind.annotation.XmlEnum;
12import javax.xml.bind.annotation.XmlEnumValue;
13import 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 * &lt;simpleType name="NuisanceFacilityEnumeration">
23 * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
24 * &lt;enumeration value="unknown"/>
25 * &lt;enumeration value="smoking"/>
26 * &lt;enumeration value="noSmoking"/>
27 * &lt;enumeration value="mobilePhoneUseZone"/>
28 * &lt;enumeration value="mobilePhoneFreeZone"/>
29 * &lt;/restriction>
30 * &lt;/simpleType>
31 * </pre>
32 *
33 */
34@XmlType(name = "NuisanceFacilityEnumeration", namespace = "http://www.siri.org.uk/siri")
35@XmlEnum
36public 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}
Note: See TracBrowser for help on using the repository browser.