public enum VhfNavaidCoverage extends Enum<VhfNavaidCoverage>
Java class for VhfNavaidCoverage.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="VhfNavaidCoverage"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Terminal"/> <enumeration value="Low"/> <enumeration value="High"/> <enumeration value="Undefined"/> <enumeration value="IlsTacan"/> </restriction> </simpleType>
Enum Constant and Description |
---|
HIGH
High Altitude.
|
ILS_TACAN
ILS/TACAN.
|
LOW
Low Altitude.Generally usable within 40NM of the facility and up to 18000 feet.
|
TERMINAL
Terminal.
|
UNDEFINED
Undefined.
|
Modifier and Type | Method and Description |
---|---|
static VhfNavaidCoverage |
fromValue(String v) |
String |
value() |
static VhfNavaidCoverage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VhfNavaidCoverage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VhfNavaidCoverage TERMINAL
public static final VhfNavaidCoverage LOW
public static final VhfNavaidCoverage HIGH
public static final VhfNavaidCoverage UNDEFINED
public static final VhfNavaidCoverage ILS_TACAN
public static VhfNavaidCoverage[] values()
for (VhfNavaidCoverage c : VhfNavaidCoverage.values()) System.out.println(c);
public static VhfNavaidCoverage valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String value()
public static VhfNavaidCoverage fromValue(String v)
Copyright © 2017. All rights reserved.