Enum Class LmrsFactory.FullerImplementation
java.lang.Object
java.lang.Enum<LmrsFactory.FullerImplementation>
org.opentrafficsim.road.gtu.lane.tactical.lmrs.LmrsFactory.FullerImplementation
- All Implemented Interfaces:
Serializable,Comparable<LmrsFactory.FullerImplementation>,Constable
- Enclosing class:
- LmrsFactory<T extends AbstractIncentivesTacticalPlanner>
Type of management of different tasks.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTask demand based on one primary and multiple auxiliary tasks.Task demand as steady-state in the attention matrix.No perception model.Task demands are summed. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static LmrsFactory.FullerImplementation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
No perception model. -
SUMMATIVE
Task demands are summed. -
ANTICIPATION_RELIANCE
Task demand based on one primary and multiple auxiliary tasks. Requires parameters ALPHA and BETA and the id of the primary task. -
ATTENTION_MATRIX
Task demand as steady-state in the attention matrix.
-
-
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
-