Uses of Class
org.springframework.batch.core.job.flow.support.StateTransition

Packages that use StateTransition
org.springframework.batch.core.configuration.xml   
org.springframework.batch.core.job.flow.support   
 

Uses of StateTransition in org.springframework.batch.core.configuration.xml
 

Method parameters in org.springframework.batch.core.configuration.xml with type arguments of type StateTransition
 void SimpleFlowFactoryBean.setStateTransitions(List<StateTransition> stateTransitions)
          The raw state transitions for the flow.
 

Uses of StateTransition in org.springframework.batch.core.job.flow.support
 

Methods in org.springframework.batch.core.job.flow.support that return StateTransition
static StateTransition StateTransition.createEndStateTransition(State state)
          Create a new end state StateTransition specification.
static StateTransition StateTransition.createEndStateTransition(State state, String pattern)
          Create a new end state StateTransition specification.
static StateTransition StateTransition.createStateTransition(State state, String next)
          Create a new state StateTransition specification with a wildcard pattern that matches all outcomes.
static StateTransition StateTransition.createStateTransition(State state, String pattern, String next)
          Create a new StateTransition specification from one State to another (by name).
static StateTransition StateTransition.switchOriginAndDestination(StateTransition stateTransition, State state, String next)
          Convenience method to switch the origin and destination of a transition, creating a new instance.
 

Methods in org.springframework.batch.core.job.flow.support with parameters of type StateTransition
 int StateTransition.compareTo(StateTransition other)
          Sorts by decreasing specificity of pattern, based on just counting wildcards (with * taking precedence over ?).
static StateTransition StateTransition.switchOriginAndDestination(StateTransition stateTransition, State state, String next)
          Convenience method to switch the origin and destination of a transition, creating a new instance.
 

Method parameters in org.springframework.batch.core.job.flow.support with type arguments of type StateTransition
 void SimpleFlow.setStateTransitions(List<StateTransition> stateTransitions)
          Public setter for the stateTransitions.
 



Copyright © 2013 SpringSource. All Rights Reserved.