StreetAttributes (API Reference)
Package com.here.sdk.routing
Enum Class StreetAttributes
- All Implemented Interfaces:
Serializable,Comparable<StreetAttributes>,Constable
Types of street attributes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe street goes over a bridge.The street is most likely in a built-up area.The street is either a controlled access or a limited access road or both.The street is a dirt road.The street is a divided road.The street is a motorway.The street is a private road.The street contains a ramp.The driving on the street is done on the right side.The street contains a roundabout.The street goes through a tunnel.The street is under construction. -
Method Summary
Modifier and TypeMethodDescriptionstatic StreetAttributesReturns the enum constant of this class with the specified name.static StreetAttributes[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RIGHT_DRIVING_SIDE
The driving on the street is done on the right side.
-
DIRT_ROAD
The street is a dirt road.
-
TUNNEL
The street goes through a tunnel.
-
BRIDGE
The street goes over a bridge.
-
RAMP
The street contains a ramp.
-
ROUNDABOUT
The street contains a roundabout.
-
UNDER_CONSTRUCTION
The street is under construction.
-
DIVIDED_ROAD
The street is a divided road.
-
MOTORWAY
The street is a motorway.
-
PRIVATE_ROAD
The street is a private road.
-
BUILT_UP_AREA
The street is most likely in a built-up area.
-
CONTROLLED_ACCESS_HIGHWAY
The street is either a controlled access or a limited access road or both.
-
-
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
-