Returns a representation of {@code a} as an instance of type {@code B}. If {@code a} cannot be converted, an unchecked exception (such as {@link IllegalArgumentException}) should be thrown. @param a the instance to convert; will never be null @return the converted instance; <b>must not</b> be null
(A a)
| 169 | * @return the converted instance; <b>must not</b> be null |
| 170 | */ |
| 171 | @ForOverride |
| 172 | protected abstract B doForward(A a); |
| 173 | |
| 174 | /** |
| 175 | * Returns a representation of {@code b} as an instance of type {@code A}. If {@code b} cannot be |
no outgoing calls
no test coverage detected