public static enum DeltaLogActionUtils.DeltaAction extends Enum<DeltaLogActionUtils.DeltaAction>
TableImpl.getChanges(Engine, long, long, Set).
See the Delta protocol for more details https://github.com/delta-io/delta/blob/master/PROTOCOL.md#actions
| Enum Constant and Description |
|---|
ADD |
CDC |
COMMITINFO |
METADATA |
PROTOCOL |
REMOVE |
| Modifier and Type | Field and Description |
|---|---|
String |
colName |
StructType |
schema |
| Modifier and Type | Method and Description |
|---|---|
static DeltaLogActionUtils.DeltaAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeltaLogActionUtils.DeltaAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeltaLogActionUtils.DeltaAction REMOVE
public static final DeltaLogActionUtils.DeltaAction ADD
public static final DeltaLogActionUtils.DeltaAction METADATA
public static final DeltaLogActionUtils.DeltaAction PROTOCOL
public static final DeltaLogActionUtils.DeltaAction COMMITINFO
public static final DeltaLogActionUtils.DeltaAction CDC
public final String colName
public final StructType schema
public static DeltaLogActionUtils.DeltaAction[] values()
for (DeltaLogActionUtils.DeltaAction c : DeltaLogActionUtils.DeltaAction.values()) System.out.println(c);
public static DeltaLogActionUtils.DeltaAction 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 null