public static enum BindingTrace.BinderKind extends Enum<BindingTrace.BinderKind>
| Enum Constant and Description |
|---|
DML_TARGET
Directly bound to a DML target pseudo-table (OUTPUT INSERTED/DELETED, trigger).
|
MERGE_TARGET
Directly bound to the MERGE target (SET / INSERT column list).
|
MERGE_USING
Directly bound to the MERGE USING source (VALUES expressions).
|
SCOPE_RESOLUTION
Resolved through the scope machinery (namespace recorded).
|
| Modifier and Type | Method and Description |
|---|---|
static BindingTrace.BinderKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindingTrace.BinderKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindingTrace.BinderKind SCOPE_RESOLUTION
public static final BindingTrace.BinderKind DML_TARGET
public static final BindingTrace.BinderKind MERGE_TARGET
public static final BindingTrace.BinderKind MERGE_USING
public static BindingTrace.BinderKind[] values()
for (BindingTrace.BinderKind c : BindingTrace.BinderKind.values()) System.out.println(c);
public static BindingTrace.BinderKind 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