Interface ValueApplierConfigurer<T,OT>
-
- All Known Implementing Classes:
ListValueApplierConfigurer
,SingleValueApplierConfigurer
public interface ValueApplierConfigurer<T,OT>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
thenSet(BiConsumer<OT,T> apply)
Define how to set the transformed element(s) on the target object.
-
-
-
Method Detail
-
thenSet
void thenSet(BiConsumer<OT,T> apply)
Define how to set the transformed element(s) on the target object. This gets the target element, on which these should be set, as a first parameter and the object(s) to set as the second.
-
-