public enum Footway extends Enum<Footway>
Enum Constant and Description |
---|
ACCESS_AISLE |
ALLEY |
CROSSING |
LINK |
MISSING |
SIDEWALK |
TRAFFIC_ISLAND |
Modifier and Type | Method and Description |
---|---|
static Footway |
find(String name) |
String |
toString() |
static Footway |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Footway[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Footway MISSING
public static final Footway SIDEWALK
public static final Footway CROSSING
public static final Footway ACCESS_AISLE
public static final Footway LINK
public static final Footway TRAFFIC_ISLAND
public static final Footway ALLEY
public static final String KEY
public static Footway[] values()
for (Footway c : Footway.values()) System.out.println(c);
public static Footway 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–2022. All rights reserved.