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