|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DependAction.Type>
com.sun.pkg.client.DependAction.Type
public static enum DependAction.Type
Type of dependency.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |