Interface ArrayAccessor.ArrayBuilder<T,B extends ArrayAccessor.ArrayBuilder<T,B>>

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

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

    Modifier and Type
    Method
    Description
    withArray(T aArray)
    Sets the array for the array property.
  • Method Details

    • withArray

      B withArray(T aArray)
      Sets the array for the array property.
      Parameters:
      aArray - The array to be stored by the array property.
      Returns:
      The builder for applying multiple build operations.