Enum CheckpointEntryIterator.EntryType
- java.lang.Object
-
- java.lang.Enum<CheckpointEntryIterator.EntryType>
-
- io.trino.plugin.deltalake.transactionlog.checkpoint.CheckpointEntryIterator.EntryType
-
- All Implemented Interfaces:
Serializable,Comparable<CheckpointEntryIterator.EntryType>
- Enclosing class:
- CheckpointEntryIterator
public static enum CheckpointEntryIterator.EntryType extends Enum<CheckpointEntryIterator.EntryType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetColumnName()static CheckpointEntryIterator.EntryTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CheckpointEntryIterator.EntryType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRANSACTION
public static final CheckpointEntryIterator.EntryType TRANSACTION
-
ADD
public static final CheckpointEntryIterator.EntryType ADD
-
REMOVE
public static final CheckpointEntryIterator.EntryType REMOVE
-
METADATA
public static final CheckpointEntryIterator.EntryType METADATA
-
PROTOCOL
public static final CheckpointEntryIterator.EntryType PROTOCOL
-
COMMIT
public static final CheckpointEntryIterator.EntryType COMMIT
-
-
Method Detail
-
values
public static CheckpointEntryIterator.EntryType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CheckpointEntryIterator.EntryType c : CheckpointEntryIterator.EntryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CheckpointEntryIterator.EntryType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getColumnName
public String getColumnName()
-
-