SafetyCameraType (API Reference)
Package com.here.sdk.navigation
Enum Class SafetyCameraType
- All Implemented Interfaces:
Serializable,Comparable<SafetyCameraType>,Constable
Indicates the type of the safety camera.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSafety camera for checking drive on bus lane violationSafety camera for checking safe distance violationSafety camera for checking red light violationSafety camera for checking red light violation and overspeedSafety camera for checking section endSafety camera for checking section startSafety camera for checking overspeed -
Method Summary
Modifier and TypeMethodDescriptionstatic SafetyCameraTypeReturns the enum constant of this class with the specified name.static SafetyCameraType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BUS_LANE
Safety camera for checking drive on bus lane violation
-
DISTANCE
Safety camera for checking safe distance violation
-
RED_LIGHT
Safety camera for checking red light violation
-
RED_LIGHT_AND_SPEED
Safety camera for checking red light violation and overspeed
-
SECTION_END
Safety camera for checking section end
-
SECTION_START
Safety camera for checking section start
-
SPEED
Safety camera for checking overspeed
-
-
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
-