Interface HeightAccessor.HeightBuilder<B extends HeightAccessor.HeightBuilder<B>>

Type Parameters:
B - The builder to return in order to be able to apply multiple build operations.
All Known Subinterfaces:
Dimension.DimensionBuilder<B>, PixmapImageBuilder<PX>, Rectangle.RectangleBuilder<B>
All Known Implementing Classes:
RgbPixmapImageBuilder
Enclosing interface:
HeightAccessor

public static interface HeightAccessor.HeightBuilder<B extends HeightAccessor.HeightBuilder<B>>
Provides a builder method for a height property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type
    Method
    Description
    withHeight(int aHeight)
    Sets the height for the height property.
  • Method Details

    • withHeight

      B withHeight(int aHeight)
      Sets the height for the height property.
      Parameters:
      aHeight - The height to be stored by the height property.
      Returns:
      The builder for applying multiple build operations.