Q - The type to convert to.@FunctionalInterface
public interface Converter<F,T>
This is a functional interface
whose functional method is #convert().
| Modifier and Type | Method and Description |
|---|---|
T |
convert(F from)
Returns a F converted into a T.
|