Uses of Enum Class
com.amalgamasimulation.engine.StateMachine.HandlerOrder
Packages that use StateMachine.HandlerOrder
-
Uses of StateMachine.HandlerOrder in com.amalgamasimulation.engine
Methods in com.amalgamasimulation.engine that return StateMachine.HandlerOrderModifier and TypeMethodDescriptionstatic StateMachine.HandlerOrderReturns the enum constant of this class with the specified name.static StateMachine.HandlerOrder[]StateMachine.HandlerOrder.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.amalgamasimulation.engine with parameters of type StateMachine.HandlerOrderModifier and TypeMethodDescriptionStateMachine.addEnterAction(T state, StateMachine.HandlerOrder handlerOrder, Consumer<Object> action) Adds an action that will be executed every time after the specified state is entered.StateMachine.addExitAction(T state, StateMachine.HandlerOrder handlerOrder, Consumer<Object> action) Adds an action that will be executed every time before the specified state is exited.