Enum GeneralNetworkManagementTypeEnum
- java.lang.Object
-
- java.lang.Enum<GeneralNetworkManagementTypeEnum>
-
- eu.datex2.siri21.schema._2_0rc1._2_0.GeneralNetworkManagementTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<GeneralNetworkManagementTypeEnum>
public enum GeneralNetworkManagementTypeEnum extends Enum<GeneralNetworkManagementTypeEnum>
Java class for GeneralNetworkManagementTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="GeneralNetworkManagementTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="bridgeSwingInOperation"/> <enumeration value="convoyService"/> <enumeration value="obstacleSignalling"/> <enumeration value="rampMeteringInOperation"/> <enumeration value="temporaryTrafficLights"/> <enumeration value="tollGatesOpen"/> <enumeration value="trafficBeingManuallyDirected"/> <enumeration value="trafficHeld"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BRIDGE_SWING_IN_OPERATIONCONVOY_SERVICEOBSTACLE_SIGNALLINGOTHERRAMP_METERING_IN_OPERATIONTEMPORARY_TRAFFIC_LIGHTSTOLL_GATES_OPENTRAFFIC_BEING_MANUALLY_DIRECTEDTRAFFIC_HELD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GeneralNetworkManagementTypeEnumfromValue(String v)Stringvalue()static GeneralNetworkManagementTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static GeneralNetworkManagementTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BRIDGE_SWING_IN_OPERATION
public static final GeneralNetworkManagementTypeEnum BRIDGE_SWING_IN_OPERATION
-
CONVOY_SERVICE
public static final GeneralNetworkManagementTypeEnum CONVOY_SERVICE
-
OBSTACLE_SIGNALLING
public static final GeneralNetworkManagementTypeEnum OBSTACLE_SIGNALLING
-
RAMP_METERING_IN_OPERATION
public static final GeneralNetworkManagementTypeEnum RAMP_METERING_IN_OPERATION
-
TEMPORARY_TRAFFIC_LIGHTS
public static final GeneralNetworkManagementTypeEnum TEMPORARY_TRAFFIC_LIGHTS
-
TOLL_GATES_OPEN
public static final GeneralNetworkManagementTypeEnum TOLL_GATES_OPEN
-
TRAFFIC_BEING_MANUALLY_DIRECTED
public static final GeneralNetworkManagementTypeEnum TRAFFIC_BEING_MANUALLY_DIRECTED
-
TRAFFIC_HELD
public static final GeneralNetworkManagementTypeEnum TRAFFIC_HELD
-
OTHER
public static final GeneralNetworkManagementTypeEnum OTHER
-
-
Method Detail
-
values
public static GeneralNetworkManagementTypeEnum[] 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 (GeneralNetworkManagementTypeEnum c : GeneralNetworkManagementTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeneralNetworkManagementTypeEnum 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 GeneralNetworkManagementTypeEnum fromValue(String v)
-
-