public static enum Retry.Mode extends Enum<Retry.Mode>
Enum Constant and Description |
---|
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(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 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(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 null