protected static enum AbstractTempTable.CallingFunction extends java.lang.Enum<AbstractTempTable.CallingFunction>
| Enum Constant and Description |
|---|
ADD_FIELDS_FROM |
COPY_TEMP_TABLE |
CREATE_LIKE |
| Modifier and Type | Method and Description |
|---|---|
static AbstractTempTable.CallingFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractTempTable.CallingFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractTempTable.CallingFunction COPY_TEMP_TABLE
public static final AbstractTempTable.CallingFunction ADD_FIELDS_FROM
public static final AbstractTempTable.CallingFunction CREATE_LIKE
public static AbstractTempTable.CallingFunction[] values()
for (AbstractTempTable.CallingFunction c : AbstractTempTable.CallingFunction.values()) System.out.println(c);
public static AbstractTempTable.CallingFunction 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