TInput
- The type of object that is to be converted.TOutput
- The type the input object is to be converted to.@FunctionalInterface public static interface Converter.Function<TInput,TOutput>
Modifier and Type | Method and Description |
---|---|
TOutput |
invoke(TInput input)
Represents a method that converts an object from one type to another type.
|