public enum ProcedureCategory extends Enum<ProcedureCategory>
Java class for ProcedureCategory.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ProcedureCategory"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="LAAS"/> <enumeration value="WAAS"/> <enumeration value="FMS"/> <enumeration value="GPS"/> <enumeration value="VDME"/> <enumeration value="CIRC"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CIRC
Circle-to-Land
|
FMS
Flight Managment System
|
GPS
Global Positioning System, no Augmentation
|
LAAS
Local Area Differencial Augmentation System
|
VDME
VORDME, VORTACAN
|
WAAS
Wide Area Differencial Augmentation System
|
Modifier and Type | Method and Description |
---|---|
static ProcedureCategory |
fromValue(String v) |
String |
value() |
static ProcedureCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcedureCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcedureCategory LAAS
public static final ProcedureCategory WAAS
public static final ProcedureCategory FMS
public static final ProcedureCategory GPS
public static final ProcedureCategory VDME
public static final ProcedureCategory CIRC
public static ProcedureCategory[] values()
for (ProcedureCategory c : ProcedureCategory.values()) System.out.println(c);
public static ProcedureCategory 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 ProcedureCategory fromValue(String v)
Copyright © 2017. All rights reserved.