JunctionsTraversability (API Reference)
Package com.here.sdk.traffic
Enum Class JunctionsTraversability
- All Implemented Interfaces:
Serializable,Comparable<JunctionsTraversability>,Constable
Junctions traversability of some traffic incident or flow section.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAll junctions are closed.All junctions are open.First edge junction is open, all others are closed.Junctions at the beginning and end of the roadway are open, intermediate junctions are closed.First edge junction is open, all others are closed. -
Method Summary
Modifier and TypeMethodDescriptionstatic JunctionsTraversabilityReturns the enum constant of this class with the specified name.static JunctionsTraversability[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALL_OPEN
All junctions are open.
-
ALL_CLOSED
All junctions are closed.
-
INTERMEDIATE_CLOSED_EDGE_OPEN
Junctions at the beginning and end of the roadway are open, intermediate junctions are closed.
-
START_OPEN_OTHERS_CLOSED
First edge junction is open, all others are closed.
-
END_OPEN_OTHERS_CLOSED
First edge junction is open, all others are closed.
-
-
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
-