Interface ResultAccessor.ResultBuilder<RES,​B extends ResultAccessor.ResultBuilder<RES,​B>>

Type Parameters:
RES - The type of the result to be used.
B - The builder to return in order to be able to apply multiple build operations.
Enclosing interface:
ResultAccessor<RES,​EXC extends Exception>

public static interface ResultAccessor.ResultBuilder<RES,​B extends ResultAccessor.ResultBuilder<RES,​B>>
Provides a builder method for a result property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type Method Description
    B withResult​(RES aResult)
    Sets the result for the result property.
  • Method Details

    • withResult

      B withResult​(RES aResult)
      Sets the result for the result property.
      Parameters:
      aResult - The result to be stored by the result property.
      Returns:
      The builder for applying multiple build operations.