Enum Action
- All Implemented Interfaces:
Serializable, Comparable<Action>
-
Enum Constant Details
-
STOP
-
RESET_STATE
Reset state indicator.This value should be used as the return value of the
eventOccurred} method when the integration should go on after the event ending the current step, with a new state vector (which will be retrieved thanks to theresetStatemethod). -
RESET_DERIVATIVES
Reset derivatives indicator.This value should be used as the return value of the
eventOccurredmethod when the integration should go on after the event ending the current step, with a new derivatives vector. -
CONTINUE
-
-
Method Details
-
values
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-