public static enum DataChangeDeltaTable.ResultOption extends java.lang.Enum<DataChangeDeltaTable.ResultOption>
| Enum Constant and Description |
|---|
FINAL
FINAL rows after triggers.
|
NEW
NEW row with evaluated default expressions, but before triggers.
|
OLD
OLD row.
|
| Modifier and Type | Method and Description |
|---|---|
static DataChangeDeltaTable.ResultOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataChangeDeltaTable.ResultOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataChangeDeltaTable.ResultOption OLD
public static final DataChangeDeltaTable.ResultOption NEW
public static final DataChangeDeltaTable.ResultOption FINAL
public static DataChangeDeltaTable.ResultOption[] values()
for (DataChangeDeltaTable.ResultOption c : DataChangeDeltaTable.ResultOption.values()) System.out.println(c);
public static DataChangeDeltaTable.ResultOption 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 null