public static enum TurnBeforeWaypointProcedure.ConfigurationData extends Enum<TurnBeforeWaypointProcedure.ConfigurationData> implements Enumeration
Enum Constant and Description |
---|
PREVIOUS_POINT_INSIDE_TURN
The point before the
TurnBeforeWaypointProcedure lies within the turning radius, making the
procedure infeasible. |
SUCCESSFUL
The configuration was successful.
|
UNKNOWN
There was an unknown error during configuration.
|
Modifier and Type | Method and Description |
---|---|
static TurnBeforeWaypointProcedure.ConfigurationData |
getDefault()
Get the enum constant that is considered to be the default.
|
static TurnBeforeWaypointProcedure.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 TurnBeforeWaypointProcedure.ConfigurationData |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TurnBeforeWaypointProcedure.ConfigurationData[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TurnBeforeWaypointProcedure.ConfigurationData SUCCESSFUL
public static final TurnBeforeWaypointProcedure.ConfigurationData UNKNOWN
public static final TurnBeforeWaypointProcedure.ConfigurationData PREVIOUS_POINT_INSIDE_TURN
TurnBeforeWaypointProcedure
lies within the turning radius, making the
procedure infeasible. A discontinuity will result.public static TurnBeforeWaypointProcedure.ConfigurationData[] values()
for (TurnBeforeWaypointProcedure.ConfigurationData c : TurnBeforeWaypointProcedure.ConfigurationData.values()) System.out.println(c);
public static TurnBeforeWaypointProcedure.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 TurnBeforeWaypointProcedure.ConfigurationData getFromValue(int value)
value
- a numeric value.@Nonnull public static TurnBeforeWaypointProcedure.ConfigurationData getDefault()