Returns a predicate that evaluates to true if the given predicate evaluates to false.
(Predicate<T> predicate)
| 93 | |
| 94 | |
| 95 | public static <T> Predicate<T> not(Predicate<T> predicate) { |
| 96 | return new NotPredicate<T>(predicate); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Returns a predicate that evaluates to {@code true} if each of its components evaluates to |
no outgoing calls
no test coverage detected