public static enum DynamicSqlSite.Kind extends Enum<DynamicSqlSite.Kind>
| Enum Constant and Description |
|---|
EXEC_STRING |
EXECUTE_IMMEDIATE |
OTHER |
SP_EXECUTESQL |
| Modifier and Type | Method and Description |
|---|---|
static DynamicSqlSite.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DynamicSqlSite.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamicSqlSite.Kind SP_EXECUTESQL
public static final DynamicSqlSite.Kind EXEC_STRING
public static final DynamicSqlSite.Kind EXECUTE_IMMEDIATE
public static final DynamicSqlSite.Kind OTHER
public static DynamicSqlSite.Kind[] values()
for (DynamicSqlSite.Kind c : DynamicSqlSite.Kind.values()) System.out.println(c);
public static DynamicSqlSite.Kind 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 null