Enum FailedStep.FailedStepStatus
- java.lang.Object
-
- java.lang.Enum<FailedStep.FailedStepStatus>
-
- org.tkit.rhpam.quarkus.processlog.domain.models.FailedStep.FailedStepStatus
-
- All Implemented Interfaces:
Serializable,Comparable<FailedStep.FailedStepStatus>
- Enclosing class:
- FailedStep
public static enum FailedStep.FailedStepStatus extends Enum<FailedStep.FailedStepStatus>
The Process Step Status
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FailedStep.FailedStepStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static FailedStep.FailedStepStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPEN
public static final FailedStep.FailedStepStatus OPEN
OPEN status, when the failed step is created or the same error occurs the x-time.
-
RETRY
public static final FailedStep.FailedStepStatus RETRY
The step was retried.
-
SKIP
public static final FailedStep.FailedStepStatus SKIP
The step was skipped.
-
CLOSED
public static final FailedStep.FailedStepStatus CLOSED
Closed failed step status.
-
-
Method Detail
-
values
public static FailedStep.FailedStepStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FailedStep.FailedStepStatus c : FailedStep.FailedStepStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FailedStep.FailedStepStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-