Uses of Interface
org.springframework.batch.core.job.flow.State

Packages that use State
org.springframework.batch.core.job.flow   
org.springframework.batch.core.job.flow.support   
org.springframework.batch.core.job.flow.support.state   
 

Uses of State in org.springframework.batch.core.job.flow
 

Methods in org.springframework.batch.core.job.flow that return State
 State Flow.getState(java.lang.String stateName)
          Retrieve the State with the given name.
 

Methods in org.springframework.batch.core.job.flow that return types with arguments of type State
 java.util.Collection<State> Flow.getStates()
          Convenient accessor for clients needing to explore the states of this flow.
 

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

Methods in org.springframework.batch.core.job.flow.support that return State
 State StateTransition.getState()
          Public getter for the State.
 State SimpleFlow.getState(java.lang.String stateName)
          Retrieve the State with the given name.
 

Methods in org.springframework.batch.core.job.flow.support that return types with arguments of type State
 java.util.Collection<State> SimpleFlow.getStates()
          Convenient accessor for clients needing to explore the states of this flow.
 

Methods in org.springframework.batch.core.job.flow.support with parameters of type State
static StateTransition StateTransition.createEndStateTransition(State state)
          Create a new end state StateTransition specification.
static StateTransition StateTransition.createEndStateTransition(State state, java.lang.String pattern)
          Create a new end state StateTransition specification.
static StateTransition StateTransition.createStateTransition(State state, java.lang.String next)
          Create a new state StateTransition specification with a wildcard pattern that matches all outcomes.
static StateTransition StateTransition.createStateTransition(State state, java.lang.String pattern, java.lang.String next)
          Create a new StateTransition specification from one State to another (by name).
 

Uses of State in org.springframework.batch.core.job.flow.support.state
 

Classes in org.springframework.batch.core.job.flow.support.state that implement State
 class AbstractState
           
 class DecisionState
          State that requires a decider to make the status decision.
 class EndState
          State implementation for ending a job if it is in progress and continuing if just starting.
 class SplitState
          A State implementation that splits a Flow into multiple parallel subflows.
 class StepState
          State implementation that delegates to a FlowExecutor to execute the specified Step.
 



Copyright © 2009. All Rights Reserved.