|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Aeroway>
org.ka2ddo.yaac.osm.Aeroway
public enum Aeroway
Supported types of the OSM aeroway="*" attribute. See the definition of aeroway on the OpenStreetMap wiki.
Enum Constant Summary | |
---|---|
aerodrome
Boundary of an airport or airfield. |
|
apron
Parking area for aircraft. |
|
gate
A gate (passenger egress point for access to an airplane at an airport). |
|
helipad
Helicopter landing pad. |
|
navigationaid
Aviation navigational aid (VORTAC, NDB, etc.). |
|
runway
Path taken by a runway at an airport. |
|
taxiway
Taxiway between runway and other parts of the airport. |
|
terminal
Building at an airport where passengers and/or cargo wait to be loaded onto airplanes. |
|
user_defined
Other types of Ways at an airport or airfield. |
|
windsock
A windsock (passive mechanical wind direction and speed indicator). |
Method Summary | |
---|---|
AmenityType |
getAmenityType()
Get amenity type associated with this aeroway; only for types that are amenities. |
boolean |
isArea()
Indicates whether this enum type implies an area. |
static Aeroway |
value(java.lang.String name)
Get the enum value associated with the string name specified. |
static Aeroway |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Aeroway[] |
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 Aeroway user_defined
public static final Aeroway aerodrome
public static final Aeroway runway
public static final Aeroway helipad
public static final Aeroway navigationaid
public static final Aeroway taxiway
public static final Aeroway windsock
public static final Aeroway gate
public static final Aeroway terminal
public static final Aeroway apron
Method Detail |
---|
public static Aeroway[] values()
for (Aeroway c : Aeroway.values()) System.out.println(c);
public static Aeroway 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()
wayType
in interface AmenityOrWay
public AmenityType getAmenityType()
getAmenityType
in interface AmenityOrWay
public boolean isArea()
isArea
in interface MaybeArea
public static Aeroway 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 |