public enum KeyspaceAction extends Enum<KeyspaceAction>
Enum Constant and Description |
---|
ALTER |
CREATE |
CREATE_DROP |
NONE |
Modifier and Type | Method and Description |
---|---|
static KeyspaceAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyspaceAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyspaceAction NONE
public static final KeyspaceAction CREATE
public static final KeyspaceAction CREATE_DROP
public static final KeyspaceAction ALTER
public static KeyspaceAction[] values()
for (KeyspaceAction c : KeyspaceAction.values()) System.out.println(c);
public static KeyspaceAction 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 © 2011–2020 Pivotal Software, Inc.. All rights reserved.