public enum RecursionMode extends Enum<RecursionMode>
| Enum Constant and Description |
|---|
FAIL_FAST
Fail at the first operation which fails
|
KEEP_GOING
Try and keep going even if operation on one entry fails.
|
| Modifier and Type | Method and Description |
|---|---|
static RecursionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecursionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecursionMode FAIL_FAST
public static final RecursionMode KEEP_GOING
public static RecursionMode[] values()
for (RecursionMode c : RecursionMode.values()) System.out.println(c);
public static RecursionMode 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