@Generated public enum RunIf extends Enum<RunIf>
| 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.