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.
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 Summary

    Modifier and Type
    Method
    Description
    withMaxGridDimension(int aWidth, int aHeight)
    Sets the max grid dimension for the max grid dimension property.
    Sets the max grid dimension for the max grid dimension property.
    Sets the max grid dimension for the max grid dimension property.
  • Method Details

    • withMaxGridDimension

      B withMaxGridDimension(Dimension aDimension)
      Sets the max grid dimension for the max grid dimension property.
      Parameters:
      aDimension - The max grid dimension to be stored by the grid dimension property.
      Returns:
      The builder for applying multiple build operations.
    • 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.