@deprecated Provided to satisfy the Function interface; use #convert instead.
(@Nullable A a)
| 382 | * @deprecated Provided to satisfy the {@code Function} interface; use {@link #convert} instead. |
| 383 | */ |
| 384 | @Deprecated |
| 385 | @Override |
| 386 | @Nullable |
| 387 | @CanIgnoreReturnValue |
| 388 | public final B apply(@Nullable A a) { |
| 389 | return convert(a); |
| 390 | } |
| 391 | |
| 392 | /** |
| 393 | * Indicates whether another object is equal to this converter. |