- java.lang.Object
-
- com.remondis.remap.SetAssertBuilder<S,D,RD>
-
- Type Parameters:
S- The source typeD- The destination typeRD- The type of the destination field
public class SetAssertBuilder<S,D,RD> extends Object
Builder to assert a set operation on aMapperobject usingAssertConfiguration.- Author:
- schuettec
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AssertConfiguration<S,D>withFunction()Expects a set-mapping with a function providing a value.AssertConfiguration<S,D>withSupplier()Expects a set-mapping with a value supplier.AssertConfiguration<S,D>withValue()Expects a set-mapping with a value.
-
-
-
Method Detail
-
withFunction
public AssertConfiguration<S,D> withFunction()
Expects a set-mapping with a function providing a value.- Returns:
- Returns the
AssertConfigurationfor further configuration.
-
withSupplier
public AssertConfiguration<S,D> withSupplier()
Expects a set-mapping with a value supplier.- Returns:
- Returns the
AssertConfigurationfor further configuration.
-
withValue
public AssertConfiguration<S,D> withValue()
Expects a set-mapping with a value.- Returns:
- Returns the
AssertConfigurationfor further configuration.
-
-