Enum TpegLoc02DirectionTypeEnum
- java.lang.Object
-
- java.lang.Enum<TpegLoc02DirectionTypeEnum>
-
- eu.datex2.siri20.schema._2_0rc1._2_0.TpegLoc02DirectionTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TpegLoc02DirectionTypeEnum>
public enum TpegLoc02DirectionTypeEnum extends Enum<TpegLoc02DirectionTypeEnum>
Java class for TpegLoc02DirectionTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TpegLoc02DirectionTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="allDirections"/> <enumeration value="anticlockwise"/> <enumeration value="bothWays"/> <enumeration value="clockwise"/> <enumeration value="eastBound"/> <enumeration value="innerRing"/> <enumeration value="northBound"/> <enumeration value="northEastBound"/> <enumeration value="northWestBound"/> <enumeration value="opposite"/> <enumeration value="outerRing"/> <enumeration value="southBound"/> <enumeration value="southEastBound"/> <enumeration value="southWestBound"/> <enumeration value="westBound"/> <enumeration value="unknown"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_DIRECTIONSANTICLOCKWISEBOTH_WAYSCLOCKWISEEAST_BOUNDINNER_RINGNORTH_BOUNDNORTH_EAST_BOUNDNORTH_WEST_BOUNDOPPOSITEOTHEROUTER_RINGSOUTH_BOUNDSOUTH_EAST_BOUNDSOUTH_WEST_BOUNDUNKNOWNWEST_BOUND
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TpegLoc02DirectionTypeEnumfromValue(String v)Stringvalue()static TpegLoc02DirectionTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TpegLoc02DirectionTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_DIRECTIONS
public static final TpegLoc02DirectionTypeEnum ALL_DIRECTIONS
-
ANTICLOCKWISE
public static final TpegLoc02DirectionTypeEnum ANTICLOCKWISE
-
BOTH_WAYS
public static final TpegLoc02DirectionTypeEnum BOTH_WAYS
-
CLOCKWISE
public static final TpegLoc02DirectionTypeEnum CLOCKWISE
-
EAST_BOUND
public static final TpegLoc02DirectionTypeEnum EAST_BOUND
-
INNER_RING
public static final TpegLoc02DirectionTypeEnum INNER_RING
-
NORTH_BOUND
public static final TpegLoc02DirectionTypeEnum NORTH_BOUND
-
NORTH_EAST_BOUND
public static final TpegLoc02DirectionTypeEnum NORTH_EAST_BOUND
-
NORTH_WEST_BOUND
public static final TpegLoc02DirectionTypeEnum NORTH_WEST_BOUND
-
OPPOSITE
public static final TpegLoc02DirectionTypeEnum OPPOSITE
-
OUTER_RING
public static final TpegLoc02DirectionTypeEnum OUTER_RING
-
SOUTH_BOUND
public static final TpegLoc02DirectionTypeEnum SOUTH_BOUND
-
SOUTH_EAST_BOUND
public static final TpegLoc02DirectionTypeEnum SOUTH_EAST_BOUND
-
SOUTH_WEST_BOUND
public static final TpegLoc02DirectionTypeEnum SOUTH_WEST_BOUND
-
WEST_BOUND
public static final TpegLoc02DirectionTypeEnum WEST_BOUND
-
UNKNOWN
public static final TpegLoc02DirectionTypeEnum UNKNOWN
-
OTHER
public static final TpegLoc02DirectionTypeEnum OTHER
-
-
Method Detail
-
values
public static TpegLoc02DirectionTypeEnum[] 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 (TpegLoc02DirectionTypeEnum c : TpegLoc02DirectionTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TpegLoc02DirectionTypeEnum 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 TpegLoc02DirectionTypeEnum fromValue(String v)
-
-