Package org.apache.iceberg
Enum MetadataTableType
- java.lang.Object
-
- java.lang.Enum<MetadataTableType>
-
- org.apache.iceberg.MetadataTableType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MetadataTableType>
public enum MetadataTableType extends java.lang.Enum<MetadataTableType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_DATA_FILES
ALL_DELETE_FILES
ALL_ENTRIES
ALL_FILES
ALL_MANIFESTS
DATA_FILES
DELETE_FILES
ENTRIES
FILES
HISTORY
MANIFESTS
METADATA_LOG_ENTRIES
PARTITIONS
POSITION_DELETES
REFS
SNAPSHOTS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MetadataTableType
from(java.lang.String name)
static MetadataTableType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MetadataTableType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENTRIES
public static final MetadataTableType ENTRIES
-
FILES
public static final MetadataTableType FILES
-
DATA_FILES
public static final MetadataTableType DATA_FILES
-
DELETE_FILES
public static final MetadataTableType DELETE_FILES
-
HISTORY
public static final MetadataTableType HISTORY
-
METADATA_LOG_ENTRIES
public static final MetadataTableType METADATA_LOG_ENTRIES
-
SNAPSHOTS
public static final MetadataTableType SNAPSHOTS
-
REFS
public static final MetadataTableType REFS
-
MANIFESTS
public static final MetadataTableType MANIFESTS
-
PARTITIONS
public static final MetadataTableType PARTITIONS
-
ALL_DATA_FILES
public static final MetadataTableType ALL_DATA_FILES
-
ALL_DELETE_FILES
public static final MetadataTableType ALL_DELETE_FILES
-
ALL_FILES
public static final MetadataTableType ALL_FILES
-
ALL_MANIFESTS
public static final MetadataTableType ALL_MANIFESTS
-
ALL_ENTRIES
public static final MetadataTableType ALL_ENTRIES
-
POSITION_DELETES
public static final MetadataTableType POSITION_DELETES
-
-
Method Detail
-
values
public static MetadataTableType[] 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 (MetadataTableType c : MetadataTableType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetadataTableType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
from
public static MetadataTableType from(java.lang.String name)
-
-