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