Enum FontType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<FontType>

    public enum FontType
    extends java.lang.Enum<FontType>
    An enumeration with commonly used font names.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static FontType fromFontTypeName​(java.lang.String aFontTypeName)
      Retrieves the enumeration element representing the given font name (ignoring the case) or null if none was found.
      java.lang.String getFontTypeName()
      Returns the font name of the given enumeration element.
      java.lang.String toString()
      static FontType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static FontType[] 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, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

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

      • DIALOG

        public static final FontType DIALOG
      • DIALOG_INPUT

        public static final FontType DIALOG_INPUT
      • MONOSPACED

        public static final FontType MONOSPACED
      • SERIF

        public static final FontType SERIF
      • SANS_SERIF

        public static final FontType SANS_SERIF
    • Method Detail

      • values

        public static FontType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (FontType c : FontType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FontType 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
      • getFontTypeName

        public java.lang.String getFontTypeName()
        Returns the font name of the given enumeration element.
        Returns:
        The according font name.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<FontType>
      • fromFontTypeName

        public static FontType fromFontTypeName​(java.lang.String aFontTypeName)
        Retrieves the enumeration element representing the given font name (ignoring the case) or null if none was found.
        Parameters:
        aFontTypeName - The font name for which to get the enumeration element.
        Returns:
        The enumeration element determined or null if none matching was found.