InputType - The input type to convert from.OutputType - The output type to convert to.public interface ReversibleDataConverter<InputType,OutputType> extends DataConverter<InputType,OutputType>, ReversibleEvaluator<InputType,OutputType,DataConverter<? super OutputType,? extends InputType>>
DataConverter whose conversion can be reversed. The
reverse is just another DataConverter. It is required that the
converter's range must be part of the domain of the reverse converter.| Modifier and Type | Method and Description |
|---|---|
DataConverter<? super OutputType,? extends InputType> |
reverse()
Gets the data converter that performs the reverse conversion.
|
DataConverter<? super OutputType,? extends InputType> reverse()
reverse in interface ReversibleEvaluator<InputType,OutputType,DataConverter<? super OutputType,? extends InputType>>