Interface Letter

All Known Implementing Classes:
A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z

public interface Letter
Abstract interface for drawing a letter, this is implemented by all letter Objects.
Since:
2023
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Draws the letter.
    void
    draw(int offset)
    Draws the letter with an offset.
    char
    Gets the character of the object.
    void
    offset(int offset)
    Does offset behavior.
  • Method Details

    • draw

      void draw()
      Draws the letter.
    • draw

      void draw(int offset)
      Draws the letter with an offset.
      Parameters:
      offset - drawing offset
    • offset

      void offset(int offset)
      Does offset behavior.
      Parameters:
      offset - drawing offset
    • getChar

      char getChar()
      Gets the character of the object.