public enum Capability extends Enum<Capability>
| Enum Constant and Description |
|---|
CONDITIONS_NOT_MET |
LEVEL2_AIRBORNE |
LEVEL2_ON_GROUND |
LEVEL2_UNKNOWN |
RESERVED1 |
RESERVED2 |
RESERVED3 |
SURVEILANCE_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static Capability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Capability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Capability SURVEILANCE_ONLY
public static final Capability RESERVED1
public static final Capability RESERVED2
public static final Capability RESERVED3
public static final Capability LEVEL2_ON_GROUND
public static final Capability LEVEL2_AIRBORNE
public static final Capability LEVEL2_UNKNOWN
public static final Capability CONDITIONS_NOT_MET
public static Capability[] values()
for (Capability c : Capability.values()) System.out.println(c);
public static Capability 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 nullCopyright © 2020. All rights reserved.