public enum OnInvalidChange extends java.lang.Enum<OnInvalidChange>
Enum Constant and Description |
---|
ERROR
abort and throw error
|
IGNORE
silently ignore issue and go on
|
IGNORE_AND_LOG
log every occurrence of the issue and go on
|
IGNORE_AND_LOG_ONCE
log only one occurrence of the issue and go on
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toKey() |
static OnInvalidChange |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OnInvalidChange[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final OnInvalidChange ERROR
public static final OnInvalidChange IGNORE
public static final OnInvalidChange IGNORE_AND_LOG
public static final OnInvalidChange IGNORE_AND_LOG_ONCE
public java.lang.String toKey()
public static OnInvalidChange 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 static OnInvalidChange[] values()
for (OnInvalidChange c : OnInvalidChange.values()) System.out.println(c);