public static enum RoutineCallBinder.BindingStatus extends Enum<RoutineCallBinder.BindingStatus>
| Enum Constant and Description |
|---|
AMBIGUOUS
Multiple compatible definitions — nothing bound, candidates reported.
|
EXTERNAL
Callee known only by signature (metadata) — binding maps populated, no body.
|
RESOLVED
Unique callee resolved; maps populated per the contract.
|
UNRESOLVED
No candidate definition found.
|
| Modifier and Type | Method and Description |
|---|---|
static RoutineCallBinder.BindingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoutineCallBinder.BindingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoutineCallBinder.BindingStatus RESOLVED
public static final RoutineCallBinder.BindingStatus AMBIGUOUS
public static final RoutineCallBinder.BindingStatus EXTERNAL
public static final RoutineCallBinder.BindingStatus UNRESOLVED
public static RoutineCallBinder.BindingStatus[] values()
for (RoutineCallBinder.BindingStatus c : RoutineCallBinder.BindingStatus.values()) System.out.println(c);
public static RoutineCallBinder.BindingStatus 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