public static enum Operation.Name extends Enum<Operation.Name>
Enum Constant and Description |
---|
ADD_COLUMNS
Recorded when columns are added.
|
CHANGE_COLUMN
Recorded when columns are changed.
|
CONVERT
Recorded when converting a table into a Delta table.
|
CREATE_TABLE
Recorded when the table is created.
|
DELETE
Recorded while deleting certain partitions.
|
MANUAL_UPDATE |
MERGE
Recorded when a merge operation is committed to the table.
|
REPLACE_COLUMNS
Recorded when columns are replaced.
|
REPLACE_TABLE
Recorded when the table is replaced.
|
SET_TABLE_PROPERTIES
Recorded when the table properties are set.
|
STREAMING_UPDATE
Recorded during streaming inserts.
|
TRUNCATE
Recorded when truncating the table.
|
UNSET_TABLE_PROPERTIES
Recorded when the table properties are unset.
|
UPDATE
Recorded when an update operation is committed to the table.
|
UPGRADE_PROTOCOL
Recorded when the table protocol is upgraded.
|
UPGRADE_SCHEMA
Recorded when the table schema is upgraded.
|
WRITE
Recorded during batch inserts.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Operation.Name |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operation.Name[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operation.Name WRITE
public static final Operation.Name STREAMING_UPDATE
public static final Operation.Name DELETE
public static final Operation.Name TRUNCATE
public static final Operation.Name CONVERT
public static final Operation.Name MERGE
public static final Operation.Name UPDATE
public static final Operation.Name CREATE_TABLE
public static final Operation.Name REPLACE_TABLE
public static final Operation.Name SET_TABLE_PROPERTIES
public static final Operation.Name UNSET_TABLE_PROPERTIES
public static final Operation.Name ADD_COLUMNS
public static final Operation.Name CHANGE_COLUMN
public static final Operation.Name REPLACE_COLUMNS
public static final Operation.Name UPGRADE_PROTOCOL
public static final Operation.Name UPGRADE_SCHEMA
public static final Operation.Name MANUAL_UPDATE
public static Operation.Name[] values()
for (Operation.Name c : Operation.Name.values()) System.out.println(c);
public static Operation.Name 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 nullpublic String toString()
toString
in class Enum<Operation.Name>