public static enum TemporaryBuffer.CopyTableMode extends java.lang.Enum<TemporaryBuffer.CopyTableMode>
| Enum Constant and Description |
|---|
COPY_TEMP_TABLE_MODE
Table is copied using COPY-TEMP-TABLE.
|
INPUT_PARAM_MODE
Table is passed as an INPUT TABLE[-HANDLE] parameter.
|
OUTPUT_TABLE_HANDLE_PARAM_MODE
Table is passed as an OUTPUT TABLE-HANDLE parameter.
|
OUTPUT_TABLE_PARAM_MODE
Table is passed as an OUTPUT TABLE parameter.
|
| Modifier and Type | Method and Description |
|---|---|
static TemporaryBuffer.CopyTableMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TemporaryBuffer.CopyTableMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TemporaryBuffer.CopyTableMode COPY_TEMP_TABLE_MODE
public static final TemporaryBuffer.CopyTableMode INPUT_PARAM_MODE
public static final TemporaryBuffer.CopyTableMode OUTPUT_TABLE_PARAM_MODE
public static final TemporaryBuffer.CopyTableMode OUTPUT_TABLE_HANDLE_PARAM_MODE
public static TemporaryBuffer.CopyTableMode[] values()
for (TemporaryBuffer.CopyTableMode c : TemporaryBuffer.CopyTableMode.values()) System.out.println(c);
public static TemporaryBuffer.CopyTableMode 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 null