Package aero.t2s.modes.constants
Enum VerticalModeIndicator
- java.lang.Object
-
- java.lang.Enum<VerticalModeIndicator>
-
- aero.t2s.modes.constants.VerticalModeIndicator
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<VerticalModeIndicator>
public enum VerticalModeIndicator extends java.lang.Enum<VerticalModeIndicator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACQUIRECAPTURE_MAINTAINRESERVEDUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VerticalModeIndicatorfrom(int code)static VerticalModeIndicatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static VerticalModeIndicator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final VerticalModeIndicator UNKNOWN
-
ACQUIRE
public static final VerticalModeIndicator ACQUIRE
-
CAPTURE_MAINTAIN
public static final VerticalModeIndicator CAPTURE_MAINTAIN
-
RESERVED
public static final VerticalModeIndicator RESERVED
-
-
Method Detail
-
values
public static VerticalModeIndicator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VerticalModeIndicator c : VerticalModeIndicator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VerticalModeIndicator valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
from
public static VerticalModeIndicator from(int code)
-
-