Returns a representation of {@code a} as an instance of type {@code B}. @return the converted value; is null <i>if and only if</i> {@code a} is null
(@Nullable A a)
| 194 | * @return the converted value; is null <i>if and only if</i> {@code a} is null |
| 195 | */ |
| 196 | public final @Nullable B convert(@Nullable A a) { |
| 197 | return correctedDoForward(a); |
| 198 | } |
| 199 | |
| 200 | @Nullable B correctedDoForward(@Nullable A a) { |
| 201 | if (handleNullAutomatically) { |