RoadSignVehicleType (API Reference)
Package com.here.sdk.navigation
Enum Class RoadSignVehicleType
- All Implemented Interfaces:
Serializable,Comparable<RoadSignVehicleType>,Constable
Vehicle type for which a road sign is applicable.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRoad sign is applicable for auto trailers.Road sign is applicable for buses.Road sign is applicable for heavy trucks.Road sign is applicable for motorcycles.Road sign is applicable for motorhomes.Road sign is applicable for trucks. -
Method Summary
Modifier and TypeMethodDescriptionstatic RoadSignVehicleTypeReturns the enum constant of this class with the specified name.static RoadSignVehicleType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TRUCKS
Road sign is applicable for trucks.
-
HEAVY_TRUCKS
Road sign is applicable for heavy trucks.
-
BUS
Road sign is applicable for buses.
-
AUTO_TRAILER
Road sign is applicable for auto trailers. For example, passenger vehicles with trailer.
-
MOTORHOME
Road sign is applicable for motorhomes.
-
MOTORCYCLE
Road sign is applicable for motorcycles.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-