public static enum MalformedRoundaboutCheck.RoundaboutDirection extends java.lang.Enum<MalformedRoundaboutCheck.RoundaboutDirection>
| Enum Constant and Description |
|---|
CLOCKWISE |
COUNTERCLOCKWISE |
MULTIDIRECTIONAL |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static MalformedRoundaboutCheck.RoundaboutDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MalformedRoundaboutCheck.RoundaboutDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MalformedRoundaboutCheck.RoundaboutDirection CLOCKWISE
public static final MalformedRoundaboutCheck.RoundaboutDirection COUNTERCLOCKWISE
public static final MalformedRoundaboutCheck.RoundaboutDirection MULTIDIRECTIONAL
public static final MalformedRoundaboutCheck.RoundaboutDirection UNKNOWN
public static MalformedRoundaboutCheck.RoundaboutDirection[] values()
for (MalformedRoundaboutCheck.RoundaboutDirection c : MalformedRoundaboutCheck.RoundaboutDirection.values()) System.out.println(c);
public static MalformedRoundaboutCheck.RoundaboutDirection 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