public static enum RoadElement.Attribute extends java.lang.Enum<RoadElement.Attribute>
Enum Constant and Description |
---|
CAR_SHUTTLE_TRAIN |
CARPOOL |
DIR_BACKWARD |
DIR_BOTH |
DIR_FORWARD |
DIR_NO_CARS
Road direction.
|
DIRT_ROAD
Road type.
|
EXPLICATION |
FERRY |
HAS_LANE_DIR |
HAS_LANE_EXIT |
HIGHWAY |
NO_THROUGH_TRAFFIC |
SLIPROAD |
TOLLROAD |
TUNNEL |
UNDER_CONSTRUCTION |
URBAN |
USAGE_FEE_REQUIRED |
Modifier and Type | Method and Description |
---|---|
static RoadElement.Attribute |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RoadElement.Attribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoadElement.Attribute DIR_NO_CARS
public static final RoadElement.Attribute DIR_FORWARD
public static final RoadElement.Attribute DIR_BACKWARD
public static final RoadElement.Attribute DIR_BOTH
public static final RoadElement.Attribute DIRT_ROAD
public static final RoadElement.Attribute USAGE_FEE_REQUIRED
public static final RoadElement.Attribute CARPOOL
public static final RoadElement.Attribute URBAN
public static final RoadElement.Attribute TOLLROAD
public static final RoadElement.Attribute NO_THROUGH_TRAFFIC
public static final RoadElement.Attribute TUNNEL
public static final RoadElement.Attribute EXPLICATION
public static final RoadElement.Attribute SLIPROAD
public static final RoadElement.Attribute HIGHWAY
public static final RoadElement.Attribute UNDER_CONSTRUCTION
public static final RoadElement.Attribute HAS_LANE_DIR
public static final RoadElement.Attribute HAS_LANE_EXIT
public static final RoadElement.Attribute FERRY
public static final RoadElement.Attribute CAR_SHUTTLE_TRAIN
public static RoadElement.Attribute[] values()
for (RoadElement.Attribute c : RoadElement.Attribute.values()) System.out.println(c);
public static RoadElement.Attribute 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