Enum FontStyle



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

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static FontStyle fromFontStyleCode​(int aStyleCode)
      Retrieves the enumeration element representing the given font style code (ignoring the case) or null if none was found.
      static FontStyle fromFontStyleName​(java.lang.String aStyleName)
      Retrieves the enumeration element representing the given font name (ignoring the case) or null if none was found.
      int getFontStyleCode​()
      Returns the font style code of the given enumeration element.
      java.lang.String getFontStyleName​()
      Returns the font style name of the given enumeration element.
      java.lang.String toString​()
      static FontStyle valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static FontStyle[] 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

      • ITALIC

        public static final FontStyle ITALIC
      • BOLD_ITALIC

        public static final FontStyle BOLD_ITALIC
    • Method Detail

      • values

        public static FontStyle[] 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 (FontStyle c : FontStyle.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FontStyle 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
      • getFontStyleCode

        public int getFontStyleCode​()
        Returns the font style code of the given enumeration element.
        Returns:
        The according style code.
      • getFontStyleName

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

        public java.lang.String toString​()
        Overrides:
        toString in class java.lang.Enum<FontStyle>
      • fromFontStyleName

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

        public static FontStyle fromFontStyleCode​(int aStyleCode)
        Retrieves the enumeration element representing the given font style code (ignoring the case) or null if none was found.
        Parameters:
        aStyleCode - The font style code for which to get the enumeration element.
        Returns:
        The enumeration element determined or null if none matching was found.