Interface WorkflowState

All Known Implementing Classes:
State

public interface WorkflowState
Provides access to the workflow state information.
  • Method Summary

    Modifier and Type
    Method
    Description
    default String
    Return the description of the workflow state.
    Return the workflow state type.
    Return the name of the workflow state.
  • Method Details

    • name

      String name()
      Return the name of the workflow state.
      Returns:
      The name.
    • getType

      Return the workflow state type.
      Returns:
      The workflow state type.
    • getDescription

      default String getDescription()
      Return the description of the workflow state. Default implementation returns name().
      Returns:
      The description.