public enum BindingStatus extends Enum<BindingStatus>
OutwardBindingSite class. BindingStatus is restricted to be one of
the following possibilities: bound, unbound, and either.
Attributes of type BindingStatus cannot take on any other values.
| Modifier and Type | Method and Description |
|---|---|
static BindingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindingStatus bound
public static final BindingStatus unbound
public static final BindingStatus either
public static BindingStatus[] values()
for (BindingStatus c : BindingStatus.values()) System.out.println(c);
public static 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 nullCopyright © 2009–2017. All rights reserved.