Package uk.org.ifopt.siri21
Enum NavigationTypeEnumeration
- java.lang.Object
-
- java.lang.Enum<NavigationTypeEnumeration>
-
- uk.org.ifopt.siri21.NavigationTypeEnumeration
-
- All Implemented Interfaces:
Serializable,Comparable<NavigationTypeEnumeration>
public enum NavigationTypeEnumeration extends Enum<NavigationTypeEnumeration>
Java class for NavigationTypeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="NavigationTypeEnumeration"> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="hallToQuay"/> <enumeration value="hallToStreet"/> <enumeration value="quayToHall"/> <enumeration value="quayToQuay"/> <enumeration value="quayToStreet"/> <enumeration value="streetToHall"/> <enumeration value="streetToQuay"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HALL_TO_QUAYHALL_TO_STREETOTHERQUAY_TO_HALLQUAY_TO_QUAYQUAY_TO_STREETSTREET_TO_HALLSTREET_TO_QUAY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NavigationTypeEnumerationfromValue(String v)Stringvalue()static NavigationTypeEnumerationvalueOf(String name)Returns the enum constant of this type with the specified name.static NavigationTypeEnumeration[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HALL_TO_QUAY
public static final NavigationTypeEnumeration HALL_TO_QUAY
-
HALL_TO_STREET
public static final NavigationTypeEnumeration HALL_TO_STREET
-
QUAY_TO_HALL
public static final NavigationTypeEnumeration QUAY_TO_HALL
-
QUAY_TO_QUAY
public static final NavigationTypeEnumeration QUAY_TO_QUAY
-
QUAY_TO_STREET
public static final NavigationTypeEnumeration QUAY_TO_STREET
-
STREET_TO_HALL
public static final NavigationTypeEnumeration STREET_TO_HALL
-
STREET_TO_QUAY
public static final NavigationTypeEnumeration STREET_TO_QUAY
-
OTHER
public static final NavigationTypeEnumeration OTHER
-
-
Method Detail
-
values
public static NavigationTypeEnumeration[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (NavigationTypeEnumeration c : NavigationTypeEnumeration.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NavigationTypeEnumeration valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static NavigationTypeEnumeration fromValue(String v)
-
-