Uses of Interface
io.github.interacto.fsm.InputState
-
Packages that use InputState Package Description io.github.interacto.fsm -
-
Uses of InputState in io.github.interacto.fsm
Classes in io.github.interacto.fsm that implement InputState Modifier and Type Class Description classCancellingState<E>A state of an FSM.classStdState<E>An FSM state.classTerminalState<E>An FSM state.Fields in io.github.interacto.fsm declared as InputState Modifier and Type Field Description protected InputState<E>Transition. tgtMethods in io.github.interacto.fsm that return types with arguments of type InputState Modifier and Type Method Description Optional<InputState<E>>SubFSMTransition. execute(E event)Optional<InputState<E>>TimeoutTransition. execute(E event)Optional<InputState<E>>Transition. execute(E event)Executes the transition.Methods in io.github.interacto.fsm with parameters of type InputState Modifier and Type Method Description protected voidFSM. addState(InputState<E> state)Adds a state to the state machine.Constructors in io.github.interacto.fsm with parameters of type InputState Constructor Description SubFSMTransition(OutputState<E> srcState, InputState<E> tgtState, FSM<E> fsm)Creates the transition.TimeoutTransition(OutputState<E> srcState, InputState<E> tgtState, LongSupplier timeout)Creates the timeout transition.Transition(OutputState<E> srcState, InputState<E> tgtState)Creates the transition.WidgetTransition(OutputState<E> srcState, InputState<E> tgtState)Creates the transition.
-