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