Returns a representation of a as an instance of type B. @return the converted value; is null if and only if a is null
(@Nullable A a)
| 161 | * @return the converted value; is null <i>if and only if</i> {@code a} is null |
| 162 | */ |
| 163 | @Nullable |
| 164 | @CanIgnoreReturnValue |
| 165 | public final B convert(@Nullable A a) { |
| 166 | return correctedDoForward(a); |
| 167 | } |
| 168 | |
| 169 | @Nullable |
| 170 | B correctedDoForward(@Nullable A a) { |
no test coverage detected