Uses of Class
com.alibaba.cola.statemachine.impl.TransitionType
-
Packages that use TransitionType Package Description com.alibaba.cola.statemachine com.alibaba.cola.statemachine.builder The builder is to provide fluent interfaces for statemachine, which is a classic Internal DSL implementing skill.com.alibaba.cola.statemachine.impl -
-
Uses of TransitionType in com.alibaba.cola.statemachine
Methods in com.alibaba.cola.statemachine with parameters of type TransitionType Modifier and Type Method Description Transition<S,E,C>State. addTransition(E event, State<S,E,C> target, TransitionType transitionType)Add transition to the statevoidTransition. setType(TransitionType type) -
Uses of TransitionType in com.alibaba.cola.statemachine.builder
Constructors in com.alibaba.cola.statemachine.builder with parameters of type TransitionType Constructor Description TransitionsBuilderImpl(Map<S,State<S,E,C>> stateMap, TransitionType transitionType) -
Uses of TransitionType in com.alibaba.cola.statemachine.impl
Methods in com.alibaba.cola.statemachine.impl that return TransitionType Modifier and Type Method Description static TransitionTypeTransitionType. valueOf(String name)Returns the enum constant of this type with the specified name.static TransitionType[]TransitionType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.alibaba.cola.statemachine.impl with parameters of type TransitionType Modifier and Type Method Description Transition<S,E,C>StateImpl. addTransition(E event, State<S,E,C> target, TransitionType transitionType)voidTransitionImpl. setType(TransitionType type)
-