Interface ValueApplierRule<T,OT>


public interface ValueApplierRule<T,OT>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Define how to set the transformed element(s) on the target object.
  • Method Details

    • 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.