Returns a predicate that evaluates to true if the object reference being tested is null.
()
| 72 | */ |
| 73 | |
| 74 | @GwtCompatible(serializable = true) |
| 75 | public static <T> Predicate<T> isNull() { |
| 76 | return ObjectPredicate.IS_NULL.withNarrowedType(); |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Returns a predicate that evaluates to {@code true} if the object reference being tested is not |
no test coverage detected