Enum Class RoadSignVehicleType

java.lang.Object
java.lang.Enum<RoadSignVehicleType>
com.here.sdk.navigation.RoadSignVehicleType
All Implemented Interfaces:
Serializable, Comparable<RoadSignVehicleType>, Constable

public enum RoadSignVehicleType extends Enum<RoadSignVehicleType>

Vehicle type for which a road sign is applicable.

  • Enum Constant Details

    • TRUCKS

      public static final RoadSignVehicleType TRUCKS

      Road sign is applicable for trucks.

    • HEAVY_TRUCKS

      public static final RoadSignVehicleType HEAVY_TRUCKS

      Road sign is applicable for heavy trucks.

    • BUS

      public static final RoadSignVehicleType BUS

      Road sign is applicable for buses.

    • AUTO_TRAILER

      public static final RoadSignVehicleType AUTO_TRAILER

      Road sign is applicable for auto trailers. For example, passenger vehicles with trailer.

    • MOTORHOME

      public static final RoadSignVehicleType MOTORHOME

      Road sign is applicable for motorhomes.

    • MOTORCYCLE

      public static final RoadSignVehicleType MOTORCYCLE

      Road sign is applicable for motorcycles.

  • Method Details

    • values

      public static RoadSignVehicleType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static RoadSignVehicleType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null