public enum ErrorOccurrence extends Enum<ErrorOccurrence>
| Enum Constant and Description |
|---|
BEFORE_SOURCE_MAPPING |
STORE_ON_SINK_ERROR |
STORE_ON_STREAM_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static ErrorOccurrence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorOccurrence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorOccurrence BEFORE_SOURCE_MAPPING
public static final ErrorOccurrence STORE_ON_SINK_ERROR
public static final ErrorOccurrence STORE_ON_STREAM_ERROR
public static ErrorOccurrence[] values()
for (ErrorOccurrence c : ErrorOccurrence.values()) System.out.println(c);
public static ErrorOccurrence 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. All rights reserved.