public static enum Requirement.Resolution extends Enum<Requirement.Resolution>
| Enum Constant and Description |
|---|
MANDATORY
A mandatory requirement forbids the bundle to resolve when the
requirement is not satisfied.
|
OPTIONAL
An optional requirement allows a bundle to resolve even if the
requirement is not satisfied.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Requirement.Resolution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Requirement.Resolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Requirement.Resolution MANDATORY
public static final Requirement.Resolution OPTIONAL
public static Requirement.Resolution[] values()
for (Requirement.Resolution c : Requirement.Resolution.values()) System.out.println(c);
public static Requirement.Resolution 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 nullpublic String toString()
toString in class Enum<Requirement.Resolution>Copyright © Contributors to the Eclipse Foundation Licensed under the Eclipse Foundation Specification License – v1.0