public static enum Retry.Mode extends java.lang.Enum<Retry.Mode>
Enum Constant and Description |
---|
FEATURE
Retry the whole feature, if any iteration fails.
|
ITERATION
Retry the iterations individually.
|
SETUP_FEATURE_CLEANUP
Retry the the feature together with the setup and cleanup methods.
|
Modifier and Type | Method and Description |
---|---|
static Retry.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Retry.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Retry.Mode FEATURE
public static final Retry.Mode ITERATION
public static final Retry.Mode SETUP_FEATURE_CLEANUP
public static Retry.Mode[] values()
for (Retry.Mode c : Retry.Mode.values()) System.out.println(c);
public static Retry.Mode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null