public static enum ScannerConfig.SkipOnUnSupported extends 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(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(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