public static enum TableSchema.DefaultType extends java.lang.Enum<TableSchema.DefaultType>
Enum Constant and Description |
---|
ALIAS |
DEFAULT |
MATERIALIZED |
Modifier and Type | Method and Description |
---|---|
static java.util.Optional<TableSchema.DefaultType> |
parse(java.lang.String str) |
static TableSchema.DefaultType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableSchema.DefaultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableSchema.DefaultType DEFAULT
public static final TableSchema.DefaultType MATERIALIZED
public static final TableSchema.DefaultType ALIAS
public static TableSchema.DefaultType[] values()
for (TableSchema.DefaultType c : TableSchema.DefaultType.values()) System.out.println(c);
public static TableSchema.DefaultType 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 java.util.Optional<TableSchema.DefaultType> parse(java.lang.String str)