public enum Cycleway extends java.lang.Enum<Cycleway>
| Enum Constant and Description |
|---|
track |
| Modifier and Type | Method and Description |
|---|---|
static Cycleway |
value(java.lang.String name)
Get the enum value associated with the string name specified.
|
static Cycleway |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Cycleway[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
WayType |
wayType()
Report the WayType for rendering this type of Way.
|
public static final Cycleway track
public static Cycleway[] values()
for (Cycleway c : Cycleway.values()) System.out.println(c);
public static Cycleway 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 nullpublic WayType wayType()
public static Cycleway value(java.lang.String name)
name - String to convert into an Enum