public enum TrackType extends Enum<TrackType>
https://wiki.openstreetmap.org/wiki/Tracktype| Enum Constant and Description |
|---|
GRADE1 |
GRADE2 |
GRADE3 |
GRADE4 |
GRADE5 |
OTHER |
| Modifier and Type | Method and Description |
|---|---|
static TrackType |
find(String name) |
String |
toString() |
static TrackType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrackType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackType OTHER
public static final TrackType GRADE1
public static final TrackType GRADE2
public static final TrackType GRADE3
public static final TrackType GRADE4
public static final TrackType GRADE5
public static final String KEY
public static TrackType[] values()
for (TrackType c : TrackType.values()) System.out.println(c);
public static TrackType 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 nullCopyright © 2012–2020. All rights reserved.