public static enum EdgeStore.Flag extends Enum<EdgeStore.Flag>
Enum Constant and Description |
---|
ALLOWS_BIKE |
ALLOWS_CAR |
ALLOWS_PEDESTRIAN |
ALLOWS_WHEELCHAIR |
BIKE_PATH |
BOGUS_NAME |
CROSSING |
ELEVATOR |
NO_THRU_TRAFFIC |
PLATFORM |
ROUNDABOUT |
SIDEWALK |
SLOPE_OVERRIDE |
STAIRS |
TRANSIT_LINK |
UNUSED |
Modifier and Type | Field and Description |
---|---|
int |
flag |
Modifier and Type | Method and Description |
---|---|
static EdgeStore.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdgeStore.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeStore.Flag UNUSED
public static final EdgeStore.Flag BIKE_PATH
public static final EdgeStore.Flag SIDEWALK
public static final EdgeStore.Flag CROSSING
public static final EdgeStore.Flag ROUNDABOUT
public static final EdgeStore.Flag ELEVATOR
public static final EdgeStore.Flag STAIRS
public static final EdgeStore.Flag PLATFORM
public static final EdgeStore.Flag BOGUS_NAME
public static final EdgeStore.Flag NO_THRU_TRAFFIC
public static final EdgeStore.Flag SLOPE_OVERRIDE
public static final EdgeStore.Flag TRANSIT_LINK
public static final EdgeStore.Flag ALLOWS_PEDESTRIAN
public static final EdgeStore.Flag ALLOWS_BIKE
public static final EdgeStore.Flag ALLOWS_CAR
public static final EdgeStore.Flag ALLOWS_WHEELCHAIR
public static EdgeStore.Flag[] values()
for (EdgeStore.Flag c : EdgeStore.Flag.values()) System.out.println(c);
public static EdgeStore.Flag 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 © 2015. All rights reserved.