See: Description
| Interface | Description |
|---|---|
| DataConverter<InputType,OutputType> |
Defines an object used to convert data from one type to another.
|
| ReversibleDataConverter<InputType,OutputType> |
Represents a
DataConverter whose conversion can be reversed. |
| Class | Description |
|---|---|
| AbstractDataConverter<InputType,OutputType> |
Abstract implementation of
DataConverter interface. |
| AbstractReverseCachedDataConverter<InputType,OutputType,ReverseConverterType extends DataConverter<? super OutputType,? extends InputType>> |
Abstract implementation of
ReversibleDataConverter that caches the
reverse converter. |
| AbstractReversibleDataConverter<InputType,OutputType> |
Abstract implementation of sthe
ReversibleDataConverter interface. |
| IdentityDataConverter<DataType> |
A pass-through converter that just returns the given value.
|
| ObjectToStringConverter |
Converts an
Object to a String using the toString
method. |