public enum ScanFailMode extends java.lang.Enum<ScanFailMode>
Enum Constant and Description |
---|
Immediate
Exceptions are allowed to bubble up
|
Never
Exceptions are ignored
|
SkipAndCollect
Exceptions are swallowed but collected and associated with the paths that caused the failure, for potential analysis later on.
|
Modifier and Type | Method and Description |
---|---|
static ScanFailMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScanFailMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanFailMode Never
public static final ScanFailMode Immediate
public static final ScanFailMode SkipAndCollect
public static ScanFailMode[] values()
for (ScanFailMode c : ScanFailMode.values()) System.out.println(c);
public static ScanFailMode 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