Tabnine Logo
StateTransition.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.springframework.batch.core.job.flow.support.StateTransition
constructor

Best Java code snippets using org.springframework.batch.core.job.flow.support.StateTransition.<init> (Showing top 5 results out of 315)

origin: spring-projects/spring-batch

/**
 * Create a new {@link StateTransition} specification from one {@link State}
 * to another (by name).
 *
 * @param state the {@link State} used to generate the outcome for this
 * transition
 * @param pattern the pattern to match in the exit status of the
 * {@link State} (can be {@code null})
 * @param next the name of the next {@link State} to execute (can be {@code null})
 * @return {@link StateTransition} that was created.
 */
public static StateTransition createStateTransition(State state, @Nullable String pattern, @Nullable String next) {
  return new StateTransition(state, pattern, next);
}
origin: org.springframework.batch/org.springframework.batch.core

/**
 * Create a new {@link StateTransition} specification from one {@link State}
 * to another (by name).
 * 
 * @param state the {@link State} used to generate the outcome for this
 * transition
 * @param pattern the pattern to match in the exit status of the
 * {@link State}
 * @param next the name of the next {@link State} to execute
 */
public static StateTransition createStateTransition(State state, String pattern, String next) {
  return new StateTransition(state, pattern, next);
}
origin: org.springframework.batch.core/org.motechproject.org.springframework.batch.core

/**
 * Create a new {@link StateTransition} specification from one {@link State}
 * to another (by name).
 *
 * @param state the {@link State} used to generate the outcome for this
 * transition
 * @param pattern the pattern to match in the exit status of the
 * {@link State}
 * @param next the name of the next {@link State} to execute
 */
public static StateTransition createStateTransition(State state, String pattern, String next) {
  return new StateTransition(state, pattern, next);
}
origin: apache/servicemix-bundles

/**
 * Create a new {@link StateTransition} specification from one {@link State}
 * to another (by name).
 *
 * @param state the {@link State} used to generate the outcome for this
 * transition
 * @param pattern the pattern to match in the exit status of the
 * {@link State} (can be {@code null})
 * @param next the name of the next {@link State} to execute (can be {@code null})
 * @return {@link StateTransition} that was created.
 */
public static StateTransition createStateTransition(State state, @Nullable String pattern, @Nullable String next) {
  return new StateTransition(state, pattern, next);
}
origin: org.springframework.batch/spring-batch-core

/**
 * Create a new {@link StateTransition} specification from one {@link State}
 * to another (by name).
 *
 * @param state the {@link State} used to generate the outcome for this
 * transition
 * @param pattern the pattern to match in the exit status of the
 * {@link State} (can be {@code null})
 * @param next the name of the next {@link State} to execute (can be {@code null})
 * @return {@link StateTransition} that was created.
 */
public static StateTransition createStateTransition(State state, @Nullable String pattern, @Nullable String next) {
  return new StateTransition(state, pattern, next);
}
org.springframework.batch.core.job.flow.supportStateTransition<init>

Popular methods of StateTransition

  • createStateTransition
    Create a new StateTransition specification from one Stateto another (by name).
  • getNext
    Public getter for the next State name.
  • isEnd
    Check for a special next State signalling the end of a job.
  • matches
    Check if the provided status matches the pattern, signalling that the next State should be executed.
  • createEndStateTransition
    Create a new end state StateTransition specification. This transition explicitly goes to an end stat
  • getState
    Public getter for the State.
  • switchOriginAndDestination
    Convenience method to switch the origin and destination of a transition, creating a new instance.
  • getPattern
  • toString

Popular in Java

  • Reactive rest calls using spring rest template
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getApplicationContext (Context)
  • startActivity (Activity)
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now