public static enum BeanDependency.Fulfillment extends java.lang.Enum<BeanDependency.Fulfillment>
BeanDependency.BeanDependency.fulfill(BeansProvider)| Enum Constant and Description |
|---|
FULFILLED
Indicates that the
BeanDependency was fulfilled with the available beans. |
UNFULFILLED
Indicates that the
BeanDependency could not be fulfilled with the available beans. |
UNFULFILLED_OPTIONAL
Indicates that the
BeanDependency could not be fulfilled with the available beans, but is optional. |
| Modifier and Type | Method and Description |
|---|---|
static BeanDependency.Fulfillment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BeanDependency.Fulfillment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeanDependency.Fulfillment UNFULFILLED
BeanDependency could not be fulfilled with the available beans.public static final BeanDependency.Fulfillment UNFULFILLED_OPTIONAL
BeanDependency could not be fulfilled with the available beans, but is optional.
Fulfilling it should be retried when there are further beans available. But if it's never fulfilled, that's
ok, too.public static final BeanDependency.Fulfillment FULFILLED
BeanDependency was fulfilled with the available beans.public static BeanDependency.Fulfillment[] values()
for (BeanDependency.Fulfillment c : BeanDependency.Fulfillment.values()) System.out.println(c);
public static BeanDependency.Fulfillment valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null