Interface TailAccessor.TailBuilder<T,B extends TailAccessor.TailBuilder<T,B>>

Type Parameters:
T - the tail type
B - The builder to return in order to be able to apply multiple build operations.
Enclosing interface:
TailAccessor<T>

public static interface TailAccessor.TailBuilder<T,B extends TailAccessor.TailBuilder<T,B>>
Provides a builder method for a tail property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type
    Method
    Description
    withTail(T aTail)
    Sets the tail for the tail property.
  • Method Details

    • withTail

      B withTail(T aTail)
      Sets the tail for the tail property.
      Parameters:
      aTail - The tail to be stored by the tail property.
      Returns:
      The builder for applying multiple build operations.