Enum Class StatusExt

java.lang.Object
java.lang.Enum<StatusExt>
com.cloudbees.workflow.rest.external.StatusExt
All Implemented Interfaces:
Serializable, Comparable<StatusExt>, Constable

public enum StatusExt extends Enum<StatusExt>
Author:
tom.fennelly@gmail.com
  • Enum Constant Details

    • NOT_EXECUTED

      public static final StatusExt NOT_EXECUTED
    • ABORTED

      public static final StatusExt ABORTED
    • SUCCESS

      public static final StatusExt SUCCESS
    • IN_PROGRESS

      public static final StatusExt IN_PROGRESS
    • PAUSED_PENDING_INPUT

      public static final StatusExt PAUSED_PENDING_INPUT
    • FAILED

      public static final StatusExt FAILED
    • UNSTABLE

      public static final StatusExt UNSTABLE
  • Method Details

    • values

      public static StatusExt[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static StatusExt valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • valueOf

      public static StatusExt valueOf(org.jenkinsci.plugins.workflow.actions.ErrorAction errorAction)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      errorAction - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • valueOf

      public static StatusExt valueOf(Throwable t)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      t - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • valueOf

      public static StatusExt valueOf(Result r)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      r - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • fromGenericStatus

      public static StatusExt fromGenericStatus(@CheckForNull org.jenkinsci.plugins.workflow.pipelinegraphanalysis.GenericStatus st)