|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Boundary>
org.ka2ddo.yaac.osm.Boundary
public enum Boundary
Supported types of the OSM boundary="*" attribute. See the definition of boundary on the OpenStreetMap wiki.
Enum Constant Summary | |
---|---|
administrative
|
|
historic
|
|
landuse
|
|
maritime
|
|
national_park
|
|
neighborhood
|
|
protected_area
|
|
subdivision
|
|
user_defined
|
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is nullpublic WayType wayType()
public static Boundary value(java.lang.String name)
name
- String to convert into an Enum
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |