public static enum RoadElement.PluralType extends java.lang.Enum<RoadElement.PluralType>
Enum Constant and Description |
---|
CONNECTOR
Indicates that a road segment should not be viewed as an individual piece of road but as
part of the intersection.
|
INDETERMINATE
Indicates a maneuver that cannot be explained in one command or at all.
|
MANEUVER
Indicates that only one command should be given despite the fact that two Junctions
occur; one at each end of the turn lane.
|
NONE
Junction is not plural
|
Modifier and Type | Method and Description |
---|---|
static RoadElement.PluralType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RoadElement.PluralType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoadElement.PluralType NONE
public static final RoadElement.PluralType MANEUVER
public static final RoadElement.PluralType CONNECTOR
public static final RoadElement.PluralType INDETERMINATE
public static RoadElement.PluralType[] values()
for (RoadElement.PluralType c : RoadElement.PluralType.values()) System.out.println(c);
public static RoadElement.PluralType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null