Package uk.org.ifopt.siri13
Enum PathUpDownEnumeration
- java.lang.Object
-
- java.lang.Enum<PathUpDownEnumeration>
-
- uk.org.ifopt.siri13.PathUpDownEnumeration
-
- All Implemented Interfaces:
Serializable,Comparable<PathUpDownEnumeration>
public enum PathUpDownEnumeration extends Enum<PathUpDownEnumeration>
Java class for PathUpDownEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PathUpDownEnumeration"> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="up"/> <enumeration value="down"/> <enumeration value="level"/> <enumeration value="upAndDown"/> <enumeration value="downAndUp"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOWNDOWN_AND_UPLEVELUPUP_AND_DOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PathUpDownEnumerationfromValue(String v)Stringvalue()static PathUpDownEnumerationvalueOf(String name)Returns the enum constant of this type with the specified name.static PathUpDownEnumeration[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UP
public static final PathUpDownEnumeration UP
-
DOWN
public static final PathUpDownEnumeration DOWN
-
LEVEL
public static final PathUpDownEnumeration LEVEL
-
UP_AND_DOWN
public static final PathUpDownEnumeration UP_AND_DOWN
-
DOWN_AND_UP
public static final PathUpDownEnumeration DOWN_AND_UP
-
-
Method Detail
-
values
public static PathUpDownEnumeration[] 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 (PathUpDownEnumeration c : PathUpDownEnumeration.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PathUpDownEnumeration 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 PathUpDownEnumeration fromValue(String v)
-
-