See: Description
| Interface | Description |
|---|---|
| BidiFunction<F,T> |
A bidirectional version of
Function that is able to transform objects
back into their original value and/or format. |
| BidiTransforming<F,T> |
An interface for objects that carry a
BidiFunction for internally
transforming objects. |
| Transforming<F,T> |
An interface for objects that carry a
Function for internally
transforming objects. |
It leverages Java 8's Function interface
which can transform one type of objects into other ones (of same or different
type) and an extension interface BidiFunction
which can additionally do an opposite transformation.
The two interfaces Transforming and
BidiTransforming act as a sort of marker
interfaces for objects that can carry a Function
or BidiFunction.
Copyright © 2017. All rights reserved.