public enum IgnoreErrors extends java.lang.Enum<IgnoreErrors>
| Enum Constant and Description |
|---|
LENIENT |
STRICT |
VERSION_CONFLICT |
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
ignoreFailure(java.lang.String message) |
static IgnoreErrors |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IgnoreErrors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IgnoreErrors LENIENT
public static final IgnoreErrors STRICT
public static final IgnoreErrors VERSION_CONFLICT
public static IgnoreErrors[] values()
for (IgnoreErrors c : IgnoreErrors.values()) System.out.println(c);
public static IgnoreErrors 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 nullpublic abstract boolean ignoreFailure(java.lang.String message)