public enum EDynamicSqlStrategy extends Enum<EDynamicSqlStrategy>
| Enum Constant and Description |
|---|
BEST_EFFORT
Best effort: template-level + concatenation tracking + variable tracing.
|
STRICT_STATIC
Only parse EXECUTE IMMEDIATE with fully static string literals.
|
| Modifier and Type | Method and Description |
|---|---|
static EDynamicSqlStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EDynamicSqlStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EDynamicSqlStrategy STRICT_STATIC
public static final EDynamicSqlStrategy BEST_EFFORT
public static EDynamicSqlStrategy[] values()
for (EDynamicSqlStrategy c : EDynamicSqlStrategy.values()) System.out.println(c);
public static EDynamicSqlStrategy 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