public enum UnreadableSourceAction extends Enum<UnreadableSourceAction>
Enum Constant and Description |
---|
FAIL
An unreadable source causes a failure.
|
IGNORE
The unreadable source is ignored.
|
WARN
A warning message is logged, but the source is otherwise ignored.
|
Modifier and Type | Method and Description |
---|---|
static UnreadableSourceAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnreadableSourceAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnreadableSourceAction IGNORE
public static final UnreadableSourceAction WARN
public static final UnreadableSourceAction FAIL
public static UnreadableSourceAction[] values()
for (UnreadableSourceAction c : UnreadableSourceAction.values()) System.out.println(c);
public static UnreadableSourceAction 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 nullCopyright © 2020 Actian Corporation. All rights reserved.