Interface MaxGridDimension.MaxGridDimensionBuilder<B extends MaxGridDimension.MaxGridDimensionBuilder<B>>

  • Type Parameters:
    B - The builder to return in order to be able to apply multiple build operations.
    All Known Subinterfaces:
    MaxGridDimension.MaxGridDimensionPropertyBuilder
    Enclosing interface:
    MaxGridDimension


    public static interface MaxGridDimension.MaxGridDimensionBuilder<B extends MaxGridDimension.MaxGridDimensionBuilder<B>>
    Provides a builder method for a max grid dimension property returning the builder for applying multiple build operations.
    • Method Detail

      • withMaxGridDimension

        B withMaxGridDimension​(GridDimension aGridDimension)
        Sets the max grid dimension for the max grid dimension property.
        Parameters:
        aGridDimension - The max grid dimension to be stored by the grid dimension property.
        Returns:
        The builder for applying multiple build operations.
      • withMaxGridDimension

        B withMaxGridDimension​(int aWidth,
                               int aHeight)
        Sets the max grid dimension for the max grid dimension property.
        Parameters:
        aWidth - The max grid width to be stored by the max grid dimension property.
        aHeight - The max grid height to be stored by the max grid dimension property.
        Returns:
        The builder for applying multiple build operations.