Interface DoubleArrayAccessor.DoubleArrayBuilder<B extends DoubleArrayAccessor.DoubleArrayBuilder<B>>

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

public static interface DoubleArrayAccessor.DoubleArrayBuilder<B extends DoubleArrayAccessor.DoubleArrayBuilder<B>>
Provides a builder method for a double array property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type
    Method
    Description
    withDoubles(double[] aDoubles)
    Sets the double array for the double array property.
  • Method Details

    • withDoubles

      B withDoubles(double[] aDoubles)
      Sets the double array for the double array property.
      Parameters:
      aDoubles - The double array to be stored by the double array property.
      Returns:
      The builder for applying multiple build operations.