-
Constructor Summary
Constructors
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.kamikazejam.kamicommon.util.predicate.Predicate
test
-
Constructor Details
-
PredicateNot
public PredicateNot(@NotNull
@NotNull Predicate<? super T> predicate)
-
Method Details
-
get
@Contract(value="_ -> new",
pure=true)
@NotNull
public static <T> @NotNull PredicateNot<T> get(@NotNull
@NotNull Predicate<? super T> predicate)
-
getPredicate
@NotNull
public @NotNull Predicate<? super T> getPredicate()
-
apply
public boolean apply(T type)
- Specified by:
apply
in interface Predicate<T>