public enum OptionalResolutionAction extends Enum<OptionalResolutionAction>
| Enum Constant and Description |
|---|
IGNORE
Ignore optional dependencies.
|
OPTIONAL
Treat optional dependencies as optional.
|
REQUIRE
Treat optional dependencies as required.
|
| Modifier and Type | Method and Description |
|---|---|
static OptionalResolutionAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptionalResolutionAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionalResolutionAction REQUIRE
public static final OptionalResolutionAction IGNORE
public static final OptionalResolutionAction OPTIONAL
public static OptionalResolutionAction[] values()
for (OptionalResolutionAction c : OptionalResolutionAction.values()) System.out.println(c);
public static OptionalResolutionAction 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 © 2008-2015 Eclipse Foundation. All Rights Reserved.