- All Implemented Interfaces:
Serializable
,Comparable<FontStyle>
,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
-
Method Summary
Modifier and TypeMethodDescriptionstatic 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
(String aStyleName) Retrieves the enumeration element representing the given font name (ignoring the case) or null if none was found.getCode()
Returns the font style code of the given enumeration element.getName()
Returns the font style name of the given enumeration element.toString()
static FontStyle
Returns the enum constant of this class with the specified name.static FontStyle[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PLAIN
-
BOLD
-
ITALIC
-
BOLD_ITALIC
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getCode
Returns the font style code of the given enumeration element.- Specified by:
getCode
in interfaceorg.refcodes.mixin.CodeAccessor<Integer>
- Returns:
- The according style code.
-
getName
Returns the font style name of the given enumeration element.- Specified by:
getName
in interfaceorg.refcodes.mixin.NameAccessor
- Returns:
- The according font style name.
-
toString
-
fromFontStyleName
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
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.
-