Enum FontStyle

java.lang.Object
java.lang.Enum<FontStyle>
org.refcodes.textual.FontStyle
All Implemented Interfaces:
Serializable, Comparable<FontStyle>, java.lang.constant.Constable, 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 class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>

    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 Summary

    Enum Constants
    Enum Constant
    Description
     
     
     
     
  • Method Summary

    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
    Retrieves the enumeration element representing the given font name (ignoring the case) or null if none was found.
    Returns the font style code of the given enumeration element.
    Returns the font style name of the given enumeration element.
    static FontStyle
    Returns the enum constant of this type with the specified name.
    static FontStyle[]
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Object

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

    • PLAIN

      public static final FontStyle PLAIN
    • BOLD

      public static final FontStyle BOLD
    • ITALIC

      public static final FontStyle ITALIC
    • BOLD_ITALIC

      public static final FontStyle BOLD_ITALIC
  • Method Details

    • values

      public static FontStyle[] 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 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.
    • toString

      public String toString()
      Overrides:
      toString in class Enum<FontStyle>
    • 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.