public static enum AlterTableDesc.ProtectModeType extends Enum<AlterTableDesc.ProtectModeType>
Enum Constant and Description |
---|
NO_DROP |
NO_DROP_CASCADE |
OFFLINE |
READ_ONLY |
Modifier and Type | Method and Description |
---|---|
static AlterTableDesc.ProtectModeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlterTableDesc.ProtectModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlterTableDesc.ProtectModeType NO_DROP
public static final AlterTableDesc.ProtectModeType OFFLINE
public static final AlterTableDesc.ProtectModeType READ_ONLY
public static final AlterTableDesc.ProtectModeType NO_DROP_CASCADE
public static AlterTableDesc.ProtectModeType[] values()
for (AlterTableDesc.ProtectModeType c : AlterTableDesc.ProtectModeType.values()) System.out.println(c);
public static AlterTableDesc.ProtectModeType 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 nullCopyright © 2017 The Apache Software Foundation. All rights reserved.