Uses of Interface
io.github.interacto.fsm.State
-
Packages that use State Package Description io.github.interacto.fsm -
-
Uses of State in io.github.interacto.fsm
Subinterfaces of State in io.github.interacto.fsm Modifier and Type Interface Description interfaceInputState<E>Defines a type of state that can receive input events.interfaceOutputState<E>Defines a type of state that can produce as output events.Classes in io.github.interacto.fsm that implement State Modifier and Type Class Description classCancellingState<E>A state of an FSM.classInitState<E>An FSM state.classOutputStateImpl<E>Base implementation of the OutputState interface.classStdState<E>An FSM state.classTerminalState<E>An FSM state.Fields in io.github.interacto.fsm declared as State Modifier and Type Field Description protected State<E>FSM. startingStateBy default an FSM triggers its 'start' event when it leaves its initial state.Fields in io.github.interacto.fsm with type parameters of type State Modifier and Type Field Description protected Set<State<E>>FSM. statesThe states that compose the finite state machine.Methods in io.github.interacto.fsm that return types with arguments of type State Modifier and Type Method Description Set<State<E>>FSM. getStates()
-