source: osm/applications/editors/josm/plugins/opendata/includes/neptune/ReservedSpaceFacilityEnumeration.java@ 30197

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

opendata: Initial Neptune files support

File size: 2.3 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 ReservedSpaceFacilityEnumeration.
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="ReservedSpaceFacilityEnumeration">
23 * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
24 * &lt;enumeration value="unknown"/>
25 * &lt;enumeration value="lounge"/>
26 * &lt;enumeration value="hall"/>
27 * &lt;enumeration value="meetingpoint"/>
28 * &lt;enumeration value="groupPoint"/>
29 * &lt;enumeration value="reception"/>
30 * &lt;enumeration value="shelter"/>
31 * &lt;enumeration value="seats"/>
32 * &lt;/restriction>
33 * &lt;/simpleType>
34 * </pre>
35 *
36 */
37@XmlType(name = "ReservedSpaceFacilityEnumeration", namespace = "http://www.siri.org.uk/siri")
38@XmlEnum
39public 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}
Note: See TracBrowser for help on using the repository browser.