Returns a predicate that evaluates to true if the given predicate evaluates to false.
(Predicate<T> predicate)
| 87 | * {@code false}. |
| 88 | */ |
| 89 | public static <T> Predicate<T> not(Predicate<T> predicate) { |
| 90 | return new NotPredicate<T>(predicate); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Returns a predicate that evaluates to {@code true} if each of its components evaluates to |
no outgoing calls
no test coverage detected