public static enum RoutineCallBinder.BindingCompleteness extends Enum<RoutineCallBinder.BindingCompleteness>
| Enum Constant and Description |
|---|
COMPLETE |
PARTIAL
Some arguments could not be bound; reasons in diagnostics.
|
| Modifier and Type | Method and Description |
|---|---|
static RoutineCallBinder.BindingCompleteness |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoutineCallBinder.BindingCompleteness[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoutineCallBinder.BindingCompleteness COMPLETE
public static final RoutineCallBinder.BindingCompleteness PARTIAL
public static RoutineCallBinder.BindingCompleteness[] values()
for (RoutineCallBinder.BindingCompleteness c : RoutineCallBinder.BindingCompleteness.values()) System.out.println(c);
public static RoutineCallBinder.BindingCompleteness 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