@Generated public enum RunIf extends Enum<RunIf>
Possible values are: * `ALL_SUCCESS`: All dependencies have executed and succeeded * `AT_LEAST_ONE_SUCCESS`: At least one dependency has succeeded * `NONE_FAILED`: None of the dependencies have failed and at least one was executed * `ALL_DONE`: All dependencies have been completed * `AT_LEAST_ONE_FAILED`: At least one dependency failed * `ALL_FAILED`: ALl dependencies have failed
Enum Constant and Description |
---|
ALL_DONE |
ALL_FAILED |
ALL_SUCCESS |
AT_LEAST_ONE_FAILED |
AT_LEAST_ONE_SUCCESS |
NONE_FAILED |
Modifier and Type | Method and Description |
---|---|
static RunIf |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunIf[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunIf ALL_DONE
public static final RunIf ALL_FAILED
public static final RunIf ALL_SUCCESS
public static final RunIf AT_LEAST_ONE_FAILED
public static final RunIf AT_LEAST_ONE_SUCCESS
public static final RunIf NONE_FAILED
public static RunIf[] values()
for (RunIf c : RunIf.values()) System.out.println(c);
public static RunIf valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023. All rights reserved.