orElseNullable abstract method

T? orElseNullable(
  1. T? other
)

Returns this Optional's value, if present, as nullable. Otherwise, returns other.

Implementation

T? orElseNullable(T? other);