Package org.glassfish.pfl.basic.fsm
Class Transition
- java.lang.Object
-
- org.glassfish.pfl.basic.fsm.Transition
-
public final class Transition extends java.lang.Object
This represents an action, guard, and next state for a transition. Instances of this class may only be created by the StateEngine.
-
-
Constructor Summary
Constructors Constructor Description Transition(Action action, State nextState)
Transition(Guard guard, Action action, State nextState)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Action
getAction()
Guard
getGuard()
State
getNextState()
java.lang.String
toString()
-