Enum DatexPictogramEnum
- java.lang.Object
-
- java.lang.Enum<DatexPictogramEnum>
-
- eu.datex2.siri21.schema._2_0rc1._2_0.DatexPictogramEnum
-
- All Implemented Interfaces:
Serializable,Comparable<DatexPictogramEnum>
public enum DatexPictogramEnum extends Enum<DatexPictogramEnum>
Java class for DatexPictogramEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DatexPictogramEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="advisorySpeed"/> <enumeration value="blankVoid"/> <enumeration value="chainsOrSnowTyresRecommended"/> <enumeration value="crossWind"/> <enumeration value="drivingOfVehiclesLessThanXMetresApartProhibited"/> <enumeration value="endOfAdvisorySpeed"/> <enumeration value="endOfProhibitionOfOvertaking"/> <enumeration value="endOfProhibitionOfOvertakingForGoodsVehicles"/> <enumeration value="endOfSpeedLimit"/> <enumeration value="exitClosed"/> <enumeration value="fog"/> <enumeration value="keepASafeDistance"/> <enumeration value="maximumSpeedLimit"/> <enumeration value="noEntry"/> <enumeration value="noEntryForGoodsVehicles"/> <enumeration value="noEntryForVehiclesExceedingXTonnesLadenMass"/> <enumeration value="noEntryForVehiclesHavingAMassExceedingXTonnesOnOneAxle"/> <enumeration value="noEntryForVehiclesHavingAnOverallHeightExceedingXMetres"/> <enumeration value="noEntryForVehiclesHavingAnOverallLengthExceedingXMetres"/> <enumeration value="noEntryForVehiclesCarryingDangerousGoods"/> <enumeration value="otherDanger"/> <enumeration value="overtakingByGoodsVehiclesProhibited"/> <enumeration value="overtakingProhibited"/> <enumeration value="roadClosedAhead"/> <enumeration value="roadworks"/> <enumeration value="slipperyRoad"/> <enumeration value="snow"/> <enumeration value="snowTyresCompulsory"/> <enumeration value="trafficCongestion"/> </restriction> </simpleType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DatexPictogramEnumfromValue(String v)Stringvalue()static DatexPictogramEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static DatexPictogramEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADVISORY_SPEED
public static final DatexPictogramEnum ADVISORY_SPEED
-
BLANK_VOID
public static final DatexPictogramEnum BLANK_VOID
-
CHAINS_OR_SNOW_TYRES_RECOMMENDED
public static final DatexPictogramEnum CHAINS_OR_SNOW_TYRES_RECOMMENDED
-
CROSS_WIND
public static final DatexPictogramEnum CROSS_WIND
-
DRIVING_OF_VEHICLES_LESS_THAN_X_METRES_APART_PROHIBITED
public static final DatexPictogramEnum DRIVING_OF_VEHICLES_LESS_THAN_X_METRES_APART_PROHIBITED
-
END_OF_ADVISORY_SPEED
public static final DatexPictogramEnum END_OF_ADVISORY_SPEED
-
END_OF_PROHIBITION_OF_OVERTAKING
public static final DatexPictogramEnum END_OF_PROHIBITION_OF_OVERTAKING
-
END_OF_PROHIBITION_OF_OVERTAKING_FOR_GOODS_VEHICLES
public static final DatexPictogramEnum END_OF_PROHIBITION_OF_OVERTAKING_FOR_GOODS_VEHICLES
-
END_OF_SPEED_LIMIT
public static final DatexPictogramEnum END_OF_SPEED_LIMIT
-
EXIT_CLOSED
public static final DatexPictogramEnum EXIT_CLOSED
-
FOG
public static final DatexPictogramEnum FOG
-
KEEP_A_SAFE_DISTANCE
public static final DatexPictogramEnum KEEP_A_SAFE_DISTANCE
-
MAXIMUM_SPEED_LIMIT
public static final DatexPictogramEnum MAXIMUM_SPEED_LIMIT
-
NO_ENTRY
public static final DatexPictogramEnum NO_ENTRY
-
NO_ENTRY_FOR_GOODS_VEHICLES
public static final DatexPictogramEnum NO_ENTRY_FOR_GOODS_VEHICLES
-
NO_ENTRY_FOR_VEHICLES_EXCEEDING_X_TONNES_LADEN_MASS
public static final DatexPictogramEnum NO_ENTRY_FOR_VEHICLES_EXCEEDING_X_TONNES_LADEN_MASS
-
NO_ENTRY_FOR_VEHICLES_HAVING_A_MASS_EXCEEDING_X_TONNES_ON_ONE_AXLE
public static final DatexPictogramEnum NO_ENTRY_FOR_VEHICLES_HAVING_A_MASS_EXCEEDING_X_TONNES_ON_ONE_AXLE
-
NO_ENTRY_FOR_VEHICLES_HAVING_AN_OVERALL_HEIGHT_EXCEEDING_X_METRES
public static final DatexPictogramEnum NO_ENTRY_FOR_VEHICLES_HAVING_AN_OVERALL_HEIGHT_EXCEEDING_X_METRES
-
NO_ENTRY_FOR_VEHICLES_HAVING_AN_OVERALL_LENGTH_EXCEEDING_X_METRES
public static final DatexPictogramEnum NO_ENTRY_FOR_VEHICLES_HAVING_AN_OVERALL_LENGTH_EXCEEDING_X_METRES
-
NO_ENTRY_FOR_VEHICLES_CARRYING_DANGEROUS_GOODS
public static final DatexPictogramEnum NO_ENTRY_FOR_VEHICLES_CARRYING_DANGEROUS_GOODS
-
OTHER_DANGER
public static final DatexPictogramEnum OTHER_DANGER
-
OVERTAKING_BY_GOODS_VEHICLES_PROHIBITED
public static final DatexPictogramEnum OVERTAKING_BY_GOODS_VEHICLES_PROHIBITED
-
OVERTAKING_PROHIBITED
public static final DatexPictogramEnum OVERTAKING_PROHIBITED
-
ROAD_CLOSED_AHEAD
public static final DatexPictogramEnum ROAD_CLOSED_AHEAD
-
ROADWORKS
public static final DatexPictogramEnum ROADWORKS
-
SLIPPERY_ROAD
public static final DatexPictogramEnum SLIPPERY_ROAD
-
SNOW
public static final DatexPictogramEnum SNOW
-
SNOW_TYRES_COMPULSORY
public static final DatexPictogramEnum SNOW_TYRES_COMPULSORY
-
TRAFFIC_CONGESTION
public static final DatexPictogramEnum TRAFFIC_CONGESTION
-
-
Method Detail
-
values
public static DatexPictogramEnum[] 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 (DatexPictogramEnum c : DatexPictogramEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DatexPictogramEnum 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 DatexPictogramEnum fromValue(String v)
-
-