public enum Boundary extends java.lang.Enum<Boundary>
Enum Constant and Description |
---|
administrative |
historic |
landarea |
landuse |
maritime |
national_park |
neighborhood |
protected_area |
subdivision |
timezone |
user_defined |
Modifier and Type | Method and Description |
---|---|
static Boundary |
value(java.lang.String name)
Get the enum value associated with the string name specified.
|
static Boundary |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Boundary[] |
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 Boundary user_defined
public static final Boundary landuse
public static final Boundary subdivision
public static final Boundary historic
public static final Boundary neighborhood
public static final Boundary administrative
public static final Boundary maritime
public static final Boundary national_park
public static final Boundary protected_area
public static final Boundary timezone
public static final Boundary landarea
public static Boundary[] values()
for (Boundary c : Boundary.values()) System.out.println(c);
public static Boundary 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 Boundary value(java.lang.String name)
name
- String to convert into an Enum