public static enum ScannerConfig.SkipOnUnSupported extends java.lang.Enum<ScannerConfig.SkipOnUnSupported>
Enum Constant and Description |
---|
ALL
Skips both unsupported paramters and values and continues with next.
|
NONE
Throws exception on any unsupported parameters or values.
|
UNSUPPORTED_PARAM
Skips the only unsupported paramter and continues with next.
|
UNSUPPORTED_VALUE
Skips the only unsupported values and continues with next.
|
Modifier and Type | Method and Description |
---|---|
static ScannerConfig.SkipOnUnSupported |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScannerConfig.SkipOnUnSupported[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerConfig.SkipOnUnSupported NONE
public static final ScannerConfig.SkipOnUnSupported UNSUPPORTED_PARAM
public static final ScannerConfig.SkipOnUnSupported UNSUPPORTED_VALUE
public static final ScannerConfig.SkipOnUnSupported ALL
public static ScannerConfig.SkipOnUnSupported[] values()
for (ScannerConfig.SkipOnUnSupported c : ScannerConfig.SkipOnUnSupported.values()) System.out.println(c);
public static ScannerConfig.SkipOnUnSupported 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