Interface NumberAccessor.NumberBuilder<V,​B extends NumberAccessor.NumberBuilder<V,​B>>

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

public static interface NumberAccessor.NumberBuilder<V,​B extends NumberAccessor.NumberBuilder<V,​B>>
Provides a builder method for a the property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type Method Description
    B withNumber​(V aNumber)
    Sets the number for the the property.
  • Method Details

    • withNumber

      B withNumber​(V aNumber)
      Sets the number for the the property.
      Parameters:
      aNumber - The number to be stored by the number property.
      Returns:
      The builder for applying multiple build operations.