public static enum LandingProcedure.ConfigurationData extends Enum<LandingProcedure.ConfigurationData> implements Enumeration
| Enum Constant and Description | 
|---|
POINT_INSIDE_TURNING_RADIUS
This indicates that the connection to the previous or next procedure was infeasible because the
        turning radius is too large. 
 | 
SUCCESSFUL
The configuration was successful. 
 | 
UNKNOWN
There was an unknown error during configuration. 
 | 
WARNING_FIRST_PROCEDURE
This indicates that the landing procedure was the first procedure in the route. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static LandingProcedure.ConfigurationData | 
getDefault()
Get the enum constant that is considered to be the default. 
 | 
static LandingProcedure.ConfigurationData | 
getFromValue(int value)
Get the enum constant that is associated with the given numeric value. 
 | 
int | 
getValue()
Get the numeric value associated with this enum constant. 
 | 
static LandingProcedure.ConfigurationData | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static LandingProcedure.ConfigurationData[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LandingProcedure.ConfigurationData SUCCESSFUL
public static final LandingProcedure.ConfigurationData UNKNOWN
public static final LandingProcedure.ConfigurationData WARNING_FIRST_PROCEDURE
public static final LandingProcedure.ConfigurationData POINT_INSIDE_TURNING_RADIUS
public static LandingProcedure.ConfigurationData[] values()
for (LandingProcedure.ConfigurationData c : LandingProcedure.ConfigurationData.values()) System.out.println(c);
public static LandingProcedure.ConfigurationData 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 int getValue()
getValue in interface Enumeration@Nonnull public static LandingProcedure.ConfigurationData getFromValue(int value)
value - a numeric value.@Nonnull public static LandingProcedure.ConfigurationData getDefault()