public static enum Extract.TableType extends Enum<Extract.TableType>
| Enum Constant and Description |
|---|
APPEND_ONLY |
SNAPSHOT_APPEND |
SNAPSHOT_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static Extract.TableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Extract.TableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Extract.TableType SNAPSHOT_ONLY
public static final Extract.TableType SNAPSHOT_APPEND
public static final Extract.TableType APPEND_ONLY
public static Extract.TableType[] values()
for (Extract.TableType c : Extract.TableType.values()) System.out.println(c);
public static Extract.TableType 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 null