Enum ReroutingManagementTypeEnum
- java.lang.Object
-
- java.lang.Enum<ReroutingManagementTypeEnum>
-
- eu.datex2.siri21.schema._2_0rc1._2_0.ReroutingManagementTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ReroutingManagementTypeEnum>
public enum ReroutingManagementTypeEnum extends Enum<ReroutingManagementTypeEnum>
Java class for ReroutingManagementTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ReroutingManagementTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="doNotFollowDiversionSigns"/> <enumeration value="doNotUseEntry"/> <enumeration value="doNotUseExit"/> <enumeration value="doNotUseIntersectionOrJunction"/> <enumeration value="followDiversionSigns"/> <enumeration value="followLocalDiversion"/> <enumeration value="followSpecialMarkers"/> <enumeration value="useEntry"/> <enumeration value="useExit"/> <enumeration value="useIntersectionOrJunction"/> </restriction> </simpleType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReroutingManagementTypeEnumfromValue(String v)Stringvalue()static ReroutingManagementTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ReroutingManagementTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DO_NOT_FOLLOW_DIVERSION_SIGNS
public static final ReroutingManagementTypeEnum DO_NOT_FOLLOW_DIVERSION_SIGNS
-
DO_NOT_USE_ENTRY
public static final ReroutingManagementTypeEnum DO_NOT_USE_ENTRY
-
DO_NOT_USE_EXIT
public static final ReroutingManagementTypeEnum DO_NOT_USE_EXIT
-
DO_NOT_USE_INTERSECTION_OR_JUNCTION
public static final ReroutingManagementTypeEnum DO_NOT_USE_INTERSECTION_OR_JUNCTION
-
FOLLOW_DIVERSION_SIGNS
public static final ReroutingManagementTypeEnum FOLLOW_DIVERSION_SIGNS
-
FOLLOW_LOCAL_DIVERSION
public static final ReroutingManagementTypeEnum FOLLOW_LOCAL_DIVERSION
-
FOLLOW_SPECIAL_MARKERS
public static final ReroutingManagementTypeEnum FOLLOW_SPECIAL_MARKERS
-
USE_ENTRY
public static final ReroutingManagementTypeEnum USE_ENTRY
-
USE_EXIT
public static final ReroutingManagementTypeEnum USE_EXIT
-
USE_INTERSECTION_OR_JUNCTION
public static final ReroutingManagementTypeEnum USE_INTERSECTION_OR_JUNCTION
-
-
Method Detail
-
values
public static ReroutingManagementTypeEnum[] 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 (ReroutingManagementTypeEnum c : ReroutingManagementTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReroutingManagementTypeEnum 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 ReroutingManagementTypeEnum fromValue(String v)
-
-