Enum TPEGLoc02DirectionTypeEnum
- java.lang.Object
-
- java.lang.Enum<TPEGLoc02DirectionTypeEnum>
-
- eu.datex2.siri13.schema._1_0._1_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_DIRECTIONSAll directions (where more than two are applicable) at this point on the road network.ANTICLOCKWISEAnti-clockwise.BOTH_WAYSBoth directions that are applicable at this point on the road network.CLOCKWISEClockwise.EAST_BOUNDEast bound general direction.INNER_RINGInner ring direction.NORTH_BOUNDNorth bound general direction.NORTH_EAST_BOUNDNorth east bound general direction.NORTH_WEST_BOUNDNorth west bound general direction.OPPOSITEOpposite direction to the normal direction of flow at this point on the road network.OTHEROther than as defined in this enumeration.OUTER_RINGOuter ring direction.SOUTH_BOUNDSouth bound general direction.SOUTH_EAST_BOUNDSouth east bound general direction.SOUTH_WEST_BOUNDSouth west bound general direction.UNKNOWNDirection is unknown.WEST_BOUNDWest bound general direction.
-
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
All directions (where more than two are applicable) at this point on the road network.
-
ANTICLOCKWISE
public static final TPEGLoc02DirectionTypeEnum ANTICLOCKWISE
Anti-clockwise.
-
BOTH_WAYS
public static final TPEGLoc02DirectionTypeEnum BOTH_WAYS
Both directions that are applicable at this point on the road network.
-
CLOCKWISE
public static final TPEGLoc02DirectionTypeEnum CLOCKWISE
Clockwise.
-
EAST_BOUND
public static final TPEGLoc02DirectionTypeEnum EAST_BOUND
East bound general direction.
-
INNER_RING
public static final TPEGLoc02DirectionTypeEnum INNER_RING
Inner ring direction.
-
NORTH_BOUND
public static final TPEGLoc02DirectionTypeEnum NORTH_BOUND
North bound general direction.
-
NORTH_EAST_BOUND
public static final TPEGLoc02DirectionTypeEnum NORTH_EAST_BOUND
North east bound general direction.
-
NORTH_WEST_BOUND
public static final TPEGLoc02DirectionTypeEnum NORTH_WEST_BOUND
North west bound general direction.
-
OPPOSITE
public static final TPEGLoc02DirectionTypeEnum OPPOSITE
Opposite direction to the normal direction of flow at this point on the road network.
-
OUTER_RING
public static final TPEGLoc02DirectionTypeEnum OUTER_RING
Outer ring direction.
-
SOUTH_BOUND
public static final TPEGLoc02DirectionTypeEnum SOUTH_BOUND
South bound general direction.
-
SOUTH_EAST_BOUND
public static final TPEGLoc02DirectionTypeEnum SOUTH_EAST_BOUND
South east bound general direction.
-
SOUTH_WEST_BOUND
public static final TPEGLoc02DirectionTypeEnum SOUTH_WEST_BOUND
South west bound general direction.
-
WEST_BOUND
public static final TPEGLoc02DirectionTypeEnum WEST_BOUND
West bound general direction.
-
UNKNOWN
public static final TPEGLoc02DirectionTypeEnum UNKNOWN
Direction is unknown.
-
OTHER
public static final TPEGLoc02DirectionTypeEnum OTHER
Other than as defined in this enumeration.
-
-
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)
-
-