public static enum AbstractNotationDependency.NoTransitivePredicate extends java.lang.Enum<AbstractNotationDependency.NoTransitivePredicate> implements java.util.function.Predicate<GolangDependency>
| Enum Constant and Description |
|---|
NO_TRANSITIVE_PREDICATE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
test(GolangDependency dependency) |
static AbstractNotationDependency.NoTransitivePredicate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractNotationDependency.NoTransitivePredicate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractNotationDependency.NoTransitivePredicate NO_TRANSITIVE_PREDICATE
public static AbstractNotationDependency.NoTransitivePredicate[] values()
for (AbstractNotationDependency.NoTransitivePredicate c : AbstractNotationDependency.NoTransitivePredicate.values()) System.out.println(c);
public static AbstractNotationDependency.NoTransitivePredicate 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 nullpublic boolean test(GolangDependency dependency)
test in interface java.util.function.Predicate<GolangDependency>