public static enum Configuration.Mode extends java.lang.Enum<Configuration.Mode>
| Enum Constant and Description |
|---|
LAX
Processing continues after error with error recovery
|
SKIP
Processing continues after error and will not attempt error recovery
|
STRICT
Processing fails on error.
|
| Modifier and Type | Method and Description |
|---|---|
static Configuration.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.Mode STRICT
public static final Configuration.Mode SKIP
public static final Configuration.Mode LAX
public static Configuration.Mode[] values()
for (Configuration.Mode c : Configuration.Mode.values()) System.out.println(c);
public static Configuration.Mode 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