Package org.modelmapper
Interface Converters.ChainableConverter<S,D1>
-
- Type Parameters:
S
- the source typeD1
- the intermediate destination type
- Enclosing class:
- Converters
public static interface Converters.ChainableConverter<S,D1>
Provides interface to chain another converter or convert to different destination type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <D2> Converter<S,D2>
map(Converter<D1,D2> converter)
Chains a converter ofS
->D1
toS
->D2
with given converter.<D2> Converter<S,D2>
to(Class<D2> destinationType)
Chains a converter ofS
->D1
toS
->D2
.
-