Enum FontStyle

  • All Implemented Interfaces:
    Serializable, Comparable<FontStyle>, org.refcodes.mixin.CodeAccessor<Integer>, org.refcodes.mixin.NameAccessor

    public enum FontStyle
    extends Enum<FontStyle>
    implements org.refcodes.mixin.CodeAccessor<Integer>, org.refcodes.mixin.NameAccessor
    An enumeration with commonly used font styles.
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface org.refcodes.mixin.CodeAccessor

        org.refcodes.mixin.CodeAccessor.CodeBuilder<T extends Object,​B extends org.refcodes.mixin.CodeAccessor.CodeBuilder<T,​B>>, org.refcodes.mixin.CodeAccessor.CodeMutator<T extends Object>, org.refcodes.mixin.CodeAccessor.CodeProperty<T extends Object>
      • Nested classes/interfaces inherited from interface org.refcodes.mixin.NameAccessor

        org.refcodes.mixin.NameAccessor.NameBuilder<B extends org.refcodes.mixin.NameAccessor.NameBuilder<B>>, org.refcodes.mixin.NameAccessor.NameMutator, org.refcodes.mixin.NameAccessor.NameProperty
    • 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​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getCode

        public Integer getCode()
        Returns the font style code of the given enumeration element.
        Specified by:
        getCode in interface org.refcodes.mixin.CodeAccessor<Integer>
        Returns:
        The according style code.
      • getName

        public String getName()
        Returns the font style name of the given enumeration element.
        Specified by:
        getName in interface org.refcodes.mixin.NameAccessor
        Returns:
        The according font style name.
      • fromFontStyleName

        public static FontStyle fromFontStyleName​(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.