public static enum DependAction.Type extends java.lang.Enum<DependAction.Type>
Enum Constant and Description |
---|
EXCLUDE
Package non-functional if dependent package is present
(unimplemented)
|
INCORPORATE
Optional freeze at specified version.
|
OPTIONAL
Dependency if present activates additional functionality, but is
not needed.
|
REQUIRED
Dependency is needed for correct function.
|
TRANSFER
Dependency on minimum version of other package that donated
components to this package at earlier version.
|
Modifier and Type | Method and Description |
---|---|
static DependAction.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DependAction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DependAction.Type REQUIRED
public static final DependAction.Type OPTIONAL
public static final DependAction.Type TRANSFER
public static final DependAction.Type INCORPORATE
public static final DependAction.Type EXCLUDE
public static DependAction.Type[] values()
for (DependAction.Type c : DependAction.Type.values()) System.out.println(c);
public static DependAction.Type 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