Enum WFont.Size

java.lang.Object
java.lang.Enum<WFont.Size>
eu.webtoolkit.jwt.WFont.Size
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WFont.Size>, java.lang.constant.Constable
Enclosing class:
WFont

public static enum WFont.Size
extends java.lang.Enum<WFont.Size>
The font size.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant Description
    FixedSize
    Explicit size, See also fontFixedSize()
    Large
    Large.
    Larger
    Relatively larger than the parent widget.
    Medium
    Medium, default.
    Small
    Small.
    Smaller
    Relatively smaller than the parent widget.
    XLarge
    Extra large.
    XSmall
    Extra small.
    XXLarge
    Extra Extra large.
    XXSmall
    Extra Extra small.
  • Method Summary

    Modifier and Type Method Description
    int getValue()
    Returns the numerical representation of this enum.
    static WFont.Size valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static WFont.Size[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • XXSmall

      public static final WFont.Size XXSmall
      Extra Extra small.
    • XSmall

      public static final WFont.Size XSmall
      Extra small.
    • Small

      public static final WFont.Size Small
      Small.
    • Medium

      public static final WFont.Size Medium
      Medium, default.
    • Large

      public static final WFont.Size Large
      Large.
    • XLarge

      public static final WFont.Size XLarge
      Extra large.
    • XXLarge

      public static final WFont.Size XXLarge
      Extra Extra large.
    • Smaller

      public static final WFont.Size Smaller
      Relatively smaller than the parent widget.
    • Larger

      public static final WFont.Size Larger
      Relatively larger than the parent widget.
    • FixedSize

      public static final WFont.Size FixedSize
      Explicit size, See also fontFixedSize()
  • Method Details

    • values

      public static WFont.Size[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static WFont.Size valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
      java.lang.NullPointerException - if the argument is null
    • getValue

      public int getValue()
      Returns the numerical representation of this enum.