public static enum CopyStatementNode.Mode extends Enum<CopyStatementNode.Mode>
| Enum Constant and Description |
|---|
FROM_SUBQUERY |
FROM_TABLE |
TO_TABLE |
| Modifier and Type | Method and Description |
|---|---|
static CopyStatementNode.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CopyStatementNode.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopyStatementNode.Mode TO_TABLE
public static final CopyStatementNode.Mode FROM_TABLE
public static final CopyStatementNode.Mode FROM_SUBQUERY
public static CopyStatementNode.Mode[] values()
for (CopyStatementNode.Mode c : CopyStatementNode.Mode.values()) System.out.println(c);
public static CopyStatementNode.Mode 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 © 2015 FoundationDB, LLC. All rights reserved.