Interface MinGridDimension.MinGridDimensionBuilder<B extends MinGridDimension.MinGridDimensionBuilder<B>>

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

public static interface MinGridDimension.MinGridDimensionBuilder<B extends MinGridDimension.MinGridDimensionBuilder<B>>
Provides a builder method for a min grid dimension property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type Method Description
    B withMinGridDimension​(int aGridWidth, int aGridHeight)
    Sets the min grid dimension for the min grid dimension property.
    B withMinGridDimension​(Dimension aDimension)
    Sets the min grid dimension for the min grid dimension property.
    B withMinGridDimension​(GridDimension aGridDimension)
    Sets the min grid dimension for the min grid dimension property.
  • Method Details

    • withMinGridDimension

      B withMinGridDimension​(int aGridWidth, int aGridHeight)
      Sets the min grid dimension for the min grid dimension property.
      Parameters:
      aGridWidth - The min grid width to be stored by the min grid dimension property.
      aGridHeight - The min grid height to be stored by the min grid dimension property.
      Returns:
      The builder for applying multiple build operations.
    • withMinGridDimension

      B withMinGridDimension​(Dimension aDimension)
      Sets the min grid dimension for the min grid dimension property.
      Parameters:
      aDimension - The min grid dimension to be stored by the min grid dimension property.
      Returns:
      The builder for applying multiple build operations.
    • withMinGridDimension

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