public enum SideOfRoad extends Enum<SideOfRoad>
OpenLR is a trade mark of TomTom International B.V.
email: software@openlr.org
| Enum Constant and Description |
|---|
BOTH
on both sides
|
LEFT
on the left side
|
ON_ROAD_OR_UNKNOWN
directly on the road or unknown
|
RIGHT
on the right side
|
| Modifier and Type | Method and Description |
|---|---|
static SideOfRoad |
getDefault()
Gets the default.
|
static List<SideOfRoad> |
getSideOfRoadValues()
Gets the side of road values.
|
static SideOfRoad |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SideOfRoad[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SideOfRoad ON_ROAD_OR_UNKNOWN
public static final SideOfRoad RIGHT
public static final SideOfRoad LEFT
public static final SideOfRoad BOTH
public static SideOfRoad[] values()
for (SideOfRoad c : SideOfRoad.values()) System.out.println(c);
public static SideOfRoad valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static List<SideOfRoad> getSideOfRoadValues()
public static SideOfRoad getDefault()
Copyright © 2019 TomTom International B.V.. All rights reserved.