Package com.luciad.ais.model.procedure
Enum Class TLcdProcedureGeometryCalculator.CFBehavior
java.lang.Object
java.lang.Enum<TLcdProcedureGeometryCalculator.CFBehavior>
com.luciad.ais.model.procedure.TLcdProcedureGeometryCalculator.CFBehavior
- All Implemented Interfaces:
Serializable
,Comparable<TLcdProcedureGeometryCalculator.CFBehavior>
,Constable
- Enclosing class:
TLcdProcedureGeometryCalculator
public static enum TLcdProcedureGeometryCalculator.CFBehavior
extends Enum<TLcdProcedureGeometryCalculator.CFBehavior>
CF (Course to Fix) behavior enumeration. The behavior is used by TLcdProcedureGeometryCalculator to
determine how to calculate CF procedure legs.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe calculated procedure leg will be on the specified course at an early stage.The length of the calculated procedure leg will be minimal. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MINIMAL_DISTANCE
The length of the calculated procedure leg will be minimal. This behavior reduces the fuel consumption. -
FOLLOW_COURSE
The calculated procedure leg will be on the specified course at an early stage. This is the behavior by default.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-