Interface FontAccessor.FontBuilder<B extends FontAccessor.FontBuilder<B>>

Type Parameters:
B - The builder to return in order to be able to apply multiple build operations.
All Known Implementing Classes:
AsciiArtBuilder
Enclosing interface:
FontAccessor

public static interface FontAccessor.FontBuilder<B extends FontAccessor.FontBuilder<B>>
Provides a builder method for a font property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type
    Method
    Description
    withFont(Font aFont)
    Sets the font for the font property.
  • Method Details

    • withFont

      B withFont(Font aFont)
      Sets the font for the font property.
      Parameters:
      aFont - The font to be stored by the font property.
      Returns:
      The builder for applying multiple build operations.