Package tech.uom.lib.common.function
Interface Converter<F,T>
-
- Type Parameters:
T- the type to convert toF- the type to convert from
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface Converter<F,T>
Represents an operation to convert values.This is a functional interface whose functional method is
#convert(F).- Since:
- 2.0
- Version:
- 1.1, 2018-04-19
- Author:
- Werner Keil
- See Also:
- Wikipedia: Data Conversion