public enum SelectedAltitudeSource extends Enum<SelectedAltitudeSource>
| Enum Constant and Description |
|---|
AIRCRAFT
01 = Aircraft Altitude - could indicate the aircraft is not equipped with an autopilot or the flight directors
are disabled, manual flying.
|
FMS
11 = FMS managed selected altitude - The FMS is control of the selected altitude
|
MCP
10 = MCP/FCU managed altitude - the aircraft is controlling the selected altitude through the MCP/FCU on the autopilot
|
UNKNOWN
00 = Unknown - no information on the source of the information is available.
|
| Modifier and Type | Method and Description |
|---|---|
static SelectedAltitudeSource |
find(int source) |
static SelectedAltitudeSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SelectedAltitudeSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectedAltitudeSource UNKNOWN
public static final SelectedAltitudeSource AIRCRAFT
public static final SelectedAltitudeSource MCP
public static final SelectedAltitudeSource FMS
public static SelectedAltitudeSource[] values()
for (SelectedAltitudeSource c : SelectedAltitudeSource.values()) System.out.println(c);
public static SelectedAltitudeSource 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 static SelectedAltitudeSource find(int source)
Copyright © 2020. All rights reserved.