public enum Aeroway extends java.lang.Enum<Aeroway> implements AmenityOrWay, MaybeArea
| Enum Constant and Description |
|---|
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).
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
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
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 namejava.lang.NullPointerException - if the argument is nullpublic WayType wayType()
wayType in interface AmenityOrWaypublic AmenityType getAmenityType()
getAmenityType in interface AmenityOrWaypublic boolean isArea()
public static Aeroway value(java.lang.String name)
name - String to convert into an Enum