public static enum PDG.Dependency extends Enum<PDG.Dependency>
Enum Constant and Description |
---|
CONTROL_DEP |
DATA_AND_CONTROL_DEP |
Modifier and Type | Method and Description |
---|---|
static PDG.Dependency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PDG.Dependency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PDG.Dependency CONTROL_DEP
public static final PDG.Dependency DATA_AND_CONTROL_DEP
public static PDG.Dependency[] values()
for (PDG.Dependency c : PDG.Dependency.values()) System.out.println(c);
public static PDG.Dependency 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 null