Enum EquipmentOrSystemTypeEnum
- java.lang.Object
-
- java.lang.Enum<EquipmentOrSystemTypeEnum>
-
- eu.datex2.siri21.schema._2_0rc1._2_0.EquipmentOrSystemTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<EquipmentOrSystemTypeEnum>
public enum EquipmentOrSystemTypeEnum extends Enum<EquipmentOrSystemTypeEnum>
Java class for EquipmentOrSystemTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EquipmentOrSystemTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="automatedTollSystem"/> <enumeration value="emergencyRoadsideTelephones"/> <enumeration value="galleryLights"/> <enumeration value="laneControlSigns"/> <enumeration value="levelCrossing"/> <enumeration value="matrixSigns"/> <enumeration value="rampControls"/> <enumeration value="roadsideCommunicationsSystem"/> <enumeration value="roadsidePowerSystem"/> <enumeration value="speedControlSigns"/> <enumeration value="streetLighting"/> <enumeration value="temporaryTrafficLights"/> <enumeration value="tollGates"/> <enumeration value="trafficLightSets"/> <enumeration value="trafficSignals"/> <enumeration value="tunnelLights"/> <enumeration value="tunnelVentilation"/> <enumeration value="variableMessageSigns"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EquipmentOrSystemTypeEnumfromValue(String v)Stringvalue()static EquipmentOrSystemTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static EquipmentOrSystemTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTOMATED_TOLL_SYSTEM
public static final EquipmentOrSystemTypeEnum AUTOMATED_TOLL_SYSTEM
-
EMERGENCY_ROADSIDE_TELEPHONES
public static final EquipmentOrSystemTypeEnum EMERGENCY_ROADSIDE_TELEPHONES
-
GALLERY_LIGHTS
public static final EquipmentOrSystemTypeEnum GALLERY_LIGHTS
-
LANE_CONTROL_SIGNS
public static final EquipmentOrSystemTypeEnum LANE_CONTROL_SIGNS
-
LEVEL_CROSSING
public static final EquipmentOrSystemTypeEnum LEVEL_CROSSING
-
MATRIX_SIGNS
public static final EquipmentOrSystemTypeEnum MATRIX_SIGNS
-
RAMP_CONTROLS
public static final EquipmentOrSystemTypeEnum RAMP_CONTROLS
-
ROADSIDE_COMMUNICATIONS_SYSTEM
public static final EquipmentOrSystemTypeEnum ROADSIDE_COMMUNICATIONS_SYSTEM
-
ROADSIDE_POWER_SYSTEM
public static final EquipmentOrSystemTypeEnum ROADSIDE_POWER_SYSTEM
-
SPEED_CONTROL_SIGNS
public static final EquipmentOrSystemTypeEnum SPEED_CONTROL_SIGNS
-
STREET_LIGHTING
public static final EquipmentOrSystemTypeEnum STREET_LIGHTING
-
TEMPORARY_TRAFFIC_LIGHTS
public static final EquipmentOrSystemTypeEnum TEMPORARY_TRAFFIC_LIGHTS
-
TOLL_GATES
public static final EquipmentOrSystemTypeEnum TOLL_GATES
-
TRAFFIC_LIGHT_SETS
public static final EquipmentOrSystemTypeEnum TRAFFIC_LIGHT_SETS
-
TRAFFIC_SIGNALS
public static final EquipmentOrSystemTypeEnum TRAFFIC_SIGNALS
-
TUNNEL_LIGHTS
public static final EquipmentOrSystemTypeEnum TUNNEL_LIGHTS
-
TUNNEL_VENTILATION
public static final EquipmentOrSystemTypeEnum TUNNEL_VENTILATION
-
VARIABLE_MESSAGE_SIGNS
public static final EquipmentOrSystemTypeEnum VARIABLE_MESSAGE_SIGNS
-
OTHER
public static final EquipmentOrSystemTypeEnum OTHER
-
-
Method Detail
-
values
public static EquipmentOrSystemTypeEnum[] 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 (EquipmentOrSystemTypeEnum c : EquipmentOrSystemTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EquipmentOrSystemTypeEnum 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 EquipmentOrSystemTypeEnum fromValue(String v)
-
-