public enum ErrorOccurrence extends Enum<ErrorOccurrence>
Enum Constant and Description |
---|
BEFORE_SOURCE_MAPPING |
STORE_ON_SINK_ERROR |
STORE_ON_STREAM_ERROR |
STORE_ON_TABLE_ADD |
STORE_ON_TABLE_CONTAINS |
STORE_ON_TABLE_DELETE |
STORE_ON_TABLE_FIND |
STORE_ON_TABLE_UPDATE |
STORE_ON_TABLE_UPDATE_OR_ADD |
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 final ErrorOccurrence STORE_ON_TABLE_ADD
public static final ErrorOccurrence STORE_ON_TABLE_FIND
public static final ErrorOccurrence STORE_ON_TABLE_DELETE
public static final ErrorOccurrence STORE_ON_TABLE_UPDATE
public static final ErrorOccurrence STORE_ON_TABLE_UPDATE_OR_ADD
public static final ErrorOccurrence STORE_ON_TABLE_CONTAINS
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 © 2021. All rights reserved.