Returns an Optional instance with no contained reference. Comparison to java.util.Optional: this method is equivalent to Java 8's Optional.empty.
()
| 92 | */ |
| 93 | |
| 94 | public static <T> Optional<T> absent() { |
| 95 | return Absent.withType(); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Returns an {@code Optional} instance containing the given non-null reference. To have {@code |
no test coverage detected