Enum MeasuredOrDerivedDataTypeEnum
- java.lang.Object
-
- java.lang.Enum<MeasuredOrDerivedDataTypeEnum>
-
- eu.datex2.siri13.schema._1_0._1_0.MeasuredOrDerivedDataTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MeasuredOrDerivedDataTypeEnum>
public enum MeasuredOrDerivedDataTypeEnum extends Enum<MeasuredOrDerivedDataTypeEnum>
Java class for MeasuredOrDerivedDataTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MeasuredOrDerivedDataTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="humidityInformation"/> <enumeration value="pollutionInformation"/> <enumeration value="precipitationInformation"/> <enumeration value="pressureInformation"/> <enumeration value="radiationInformation"/> <enumeration value="roadSurfaceConditionInformation"/> <enumeration value="temperatureInformation"/> <enumeration value="visibilityInformation"/> <enumeration value="windInformation"/> <enumeration value="individualVehicleMeasurements"/> <enumeration value="trafficConcentration"/> <enumeration value="trafficFlow"/> <enumeration value="trafficHeadway"/> <enumeration value="trafficSpeed"/> <enumeration value="trafficStatusInformation"/> <enumeration value="travelTimeInformation"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HUMIDITY_INFORMATIONMeasured or derived humidity information.INDIVIDUAL_VEHICLE_MEASUREMENTSMeasured or derived individual vehicle measurements.POLLUTION_INFORMATIONMeasured or derived pollution information.PRECIPITATION_INFORMATIONMeasured or derived precipitation information.PRESSURE_INFORMATIONMeasured or derived pressure information.RADIATION_INFORMATIONMeasured or derived radiation information.ROAD_SURFACE_CONDITION_INFORMATIONMeasured or derived road surface conditions information.TEMPERATURE_INFORMATIONMeasured or derived temperature information.TRAFFIC_CONCENTRATIONMeasured or derived traffic concentration information.TRAFFIC_FLOWMeasured or derived traffic flow information.TRAFFIC_HEADWAYMeasured or derived traffic headway information.TRAFFIC_SPEEDMeasured or derived traffic speed information.TRAFFIC_STATUS_INFORMATIONMeasured or derived traffic status information.TRAVEL_TIME_INFORMATIONMeasured or derived travel time information.VISIBILITY_INFORMATIONMeasured or derived visibility information.WIND_INFORMATIONMeasured or derived wind information.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MeasuredOrDerivedDataTypeEnumfromValue(String v)Stringvalue()static MeasuredOrDerivedDataTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MeasuredOrDerivedDataTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HUMIDITY_INFORMATION
public static final MeasuredOrDerivedDataTypeEnum HUMIDITY_INFORMATION
Measured or derived humidity information.
-
POLLUTION_INFORMATION
public static final MeasuredOrDerivedDataTypeEnum POLLUTION_INFORMATION
Measured or derived pollution information.
-
PRECIPITATION_INFORMATION
public static final MeasuredOrDerivedDataTypeEnum PRECIPITATION_INFORMATION
Measured or derived precipitation information.
-
PRESSURE_INFORMATION
public static final MeasuredOrDerivedDataTypeEnum PRESSURE_INFORMATION
Measured or derived pressure information.
-
RADIATION_INFORMATION
public static final MeasuredOrDerivedDataTypeEnum RADIATION_INFORMATION
Measured or derived radiation information.
-
ROAD_SURFACE_CONDITION_INFORMATION
public static final MeasuredOrDerivedDataTypeEnum ROAD_SURFACE_CONDITION_INFORMATION
Measured or derived road surface conditions information.
-
TEMPERATURE_INFORMATION
public static final MeasuredOrDerivedDataTypeEnum TEMPERATURE_INFORMATION
Measured or derived temperature information.
-
VISIBILITY_INFORMATION
public static final MeasuredOrDerivedDataTypeEnum VISIBILITY_INFORMATION
Measured or derived visibility information.
-
WIND_INFORMATION
public static final MeasuredOrDerivedDataTypeEnum WIND_INFORMATION
Measured or derived wind information.
-
INDIVIDUAL_VEHICLE_MEASUREMENTS
public static final MeasuredOrDerivedDataTypeEnum INDIVIDUAL_VEHICLE_MEASUREMENTS
Measured or derived individual vehicle measurements.
-
TRAFFIC_CONCENTRATION
public static final MeasuredOrDerivedDataTypeEnum TRAFFIC_CONCENTRATION
Measured or derived traffic concentration information.
-
TRAFFIC_FLOW
public static final MeasuredOrDerivedDataTypeEnum TRAFFIC_FLOW
Measured or derived traffic flow information.
-
TRAFFIC_HEADWAY
public static final MeasuredOrDerivedDataTypeEnum TRAFFIC_HEADWAY
Measured or derived traffic headway information.
-
TRAFFIC_SPEED
public static final MeasuredOrDerivedDataTypeEnum TRAFFIC_SPEED
Measured or derived traffic speed information.
-
TRAFFIC_STATUS_INFORMATION
public static final MeasuredOrDerivedDataTypeEnum TRAFFIC_STATUS_INFORMATION
Measured or derived traffic status information.
-
TRAVEL_TIME_INFORMATION
public static final MeasuredOrDerivedDataTypeEnum TRAVEL_TIME_INFORMATION
Measured or derived travel time information.
-
-
Method Detail
-
values
public static MeasuredOrDerivedDataTypeEnum[] 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 (MeasuredOrDerivedDataTypeEnum c : MeasuredOrDerivedDataTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MeasuredOrDerivedDataTypeEnum 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 MeasuredOrDerivedDataTypeEnum fromValue(String v)
-
-