edu.mit.ll.group43.surfaceoptimization.aircraft
Enum MinimumSeparationCalculator.ActionType
java.lang.Object
java.lang.Enum<MinimumSeparationCalculator.ActionType>
edu.mit.ll.group43.surfaceoptimization.aircraft.MinimumSeparationCalculator.ActionType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<MinimumSeparationCalculator.ActionType>
- Enclosing interface:
- MinimumSeparationCalculator<T extends WeightClass>
public static enum MinimumSeparationCalculator.ActionType
- extends java.lang.Enum<MinimumSeparationCalculator.ActionType>
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
DEPARTURE
public static final MinimumSeparationCalculator.ActionType DEPARTURE
ARRIVAL
public static final MinimumSeparationCalculator.ActionType ARRIVAL
CROSSING
public static final MinimumSeparationCalculator.ActionType CROSSING
values
public static MinimumSeparationCalculator.ActionType[] 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 (MinimumSeparationCalculator.ActionType c : MinimumSeparationCalculator.ActionType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static MinimumSeparationCalculator.ActionType 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 name
java.lang.NullPointerException
- if the argument is null