All Methods Static Methods Concrete Methods
Modifier and Type |
Method and Description |
static <T,U,V> Mapper<T,V> |
chain(Mapper<? super T,? extends U> first,
Mapper<? super U,? extends V> second) |
static <T,U> Mapper<T,U> |
constant(U constant) |
static <T,U> Mapper<T,U> |
forMap(Map<? super T,? extends U> map) |
static <T,U> Mapper<T,U> |
forMap(Map<? super T,? extends U> map,
U defaultValue) |
static <T,U> Mapper<T,U> |
forPredicate(Predicate<? super T> predicate,
U forTrue,
U forFalse) |
static <T> Mapper<T,T> |
identity() |
static <T,U> Mapper<T,U> |
instantiate(Class<? extends T> clazzT,
Class<? extends U> clazzU) |
static <T> Mapper<T,String> |
string() |
static <T> Mapper<T,T> |
substitute(T subOut,
T subIn) |