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