Enum 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 Detail

      • ADVISORY_SPEED

        public static final DatexPictogramEnum ADVISORY_SPEED
        Advisory speed limit.
      • CHAINS_OR_SNOW_TYRES_RECOMMENDED

        public static final DatexPictogramEnum CHAINS_OR_SNOW_TYRES_RECOMMENDED
        Chains or snow tyres are recommended.
      • DRIVING_OF_VEHICLES_LESS_THAN_X_METRES_APART_PROHIBITED

        public static final DatexPictogramEnum DRIVING_OF_VEHICLES_LESS_THAN_X_METRES_APART_PROHIBITED
        The driving of vehicles less than X metres apart is prohibited.
      • END_OF_ADVISORY_SPEED

        public static final DatexPictogramEnum END_OF_ADVISORY_SPEED
        End of advisory speed limit.
      • END_OF_PROHIBITION_OF_OVERTAKING

        public static final DatexPictogramEnum END_OF_PROHIBITION_OF_OVERTAKING
        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 prohibition of overtaking for goods vehicles.
      • END_OF_SPEED_LIMIT

        public static final DatexPictogramEnum END_OF_SPEED_LIMIT
        End of mandatory speed limit.
      • KEEP_A_SAFE_DISTANCE

        public static final DatexPictogramEnum KEEP_A_SAFE_DISTANCE
        Keep a safe distance.
      • MAXIMUM_SPEED_LIMIT

        public static final DatexPictogramEnum MAXIMUM_SPEED_LIMIT
        Mandatory speed limit.
      • NO_ENTRY_FOR_GOODS_VEHICLES

        public static final DatexPictogramEnum NO_ENTRY_FOR_GOODS_VEHICLES
        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 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 a mass exceeding X tonnes on a single 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 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 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
        No entry for vehicles carrying dangerous goods.
      • OVERTAKING_BY_GOODS_VEHICLES_PROHIBITED

        public static final DatexPictogramEnum OVERTAKING_BY_GOODS_VEHICLES_PROHIBITED
        Overtaking prohibited for goods vehicles.
      • OVERTAKING_PROHIBITED

        public static final DatexPictogramEnum OVERTAKING_PROHIBITED
        Overtaking prohibited.
      • ROAD_CLOSED_AHEAD

        public static final DatexPictogramEnum ROAD_CLOSED_AHEAD
        Road closed ahead.
      • SNOW_TYRES_COMPULSORY

        public static final DatexPictogramEnum SNOW_TYRES_COMPULSORY
        Snow types compulsory.
      • TRAFFIC_CONGESTION

        public static final DatexPictogramEnum TRAFFIC_CONGESTION
        Traffic congestion and possible queues.
    • 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 name
        NullPointerException - if the argument is null
      • value

        public String value()