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

      • CHAINS_OR_SNOW_TYRES_RECOMMENDED

        public static final DatexPictogramEnum CHAINS_OR_SNOW_TYRES_RECOMMENDED
      • DRIVING_OF_VEHICLES_LESS_THAN_X_METRES_APART_PROHIBITED

        public static final DatexPictogramEnum DRIVING_OF_VEHICLES_LESS_THAN_X_METRES_APART_PROHIBITED
      • 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
      • 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
      • OVERTAKING_BY_GOODS_VEHICLES_PROHIBITED

        public static final DatexPictogramEnum OVERTAKING_BY_GOODS_VEHICLES_PROHIBITED
    • 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()