K
- The type of first value of the argument passed inV
- The type of the second value of the argument passed inT
- The return type@FunctionalInterface public interface DataFunction<K,V,T>
Function
except where two arguments are required for the
function to work. This is primarily used for DataManipulatorBuilder
s
and DataProcessor.fill(DataContainer, DataManipulator)
.Modifier and Type | Method and Description |
---|---|
T |
apply(K k,
V v)
Applies the function with the given arguments to return the given type.
|