public enum MetadataTableType extends java.lang.Enum<MetadataTableType>
Enum Constant and Description |
---|
ALL_DATA_FILES |
ALL_ENTRIES |
ALL_MANIFESTS |
ENTRIES |
FILES |
HISTORY |
MANIFESTS |
PARTITIONS |
SNAPSHOTS |
Modifier and Type | Method and 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.
|
public static final MetadataTableType ENTRIES
public static final MetadataTableType FILES
public static final MetadataTableType HISTORY
public static final MetadataTableType SNAPSHOTS
public static final MetadataTableType MANIFESTS
public static final MetadataTableType PARTITIONS
public static final MetadataTableType ALL_DATA_FILES
public static final MetadataTableType ALL_MANIFESTS
public static final MetadataTableType ALL_ENTRIES
public static MetadataTableType[] values()
for (MetadataTableType c : MetadataTableType.values()) System.out.println(c);
public static MetadataTableType 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 nullpublic static MetadataTableType from(java.lang.String name)