Package com.oorian.css
Enum Class FontWeight
- All Implemented Interfaces:
Serializable,Comparable<FontWeight>,Constable
CSS font-weight property values for text boldness.
The font-weight property sets the weight (thickness) of the font. Weights range from 100 (thinnest) to 900 (boldest), with keyword values for common weights.
Weight Scale:
- 100-300: Thin to light weights
- 400 (NORMAL): Regular weight
- 500-600: Medium to semi-bold weights
- 700 (BOLD): Bold weight
- 800-900: Extra bold to black weights
Usage:
element.setFontWeight(FontWeight.BOLD);
element.setFontWeight(FontWeight.WEIGHT_600);
- Since:
- 2012
- Version:
- 1.0
- Author:
- Marvin P. Warble Jr.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBold weight, equivalent to 700.One weight bolder than parent element.Inherits from parent element.Sets to default value.One weight lighter than parent element.Normal weight, equivalent to 400.Thin weight (100).Extra light weight (200).Light weight (300).Normal weight (400).Medium weight (500).Semi-bold weight (600).Bold weight (700).Extra bold weight (800).Black/heavy weight (900). -
Method Summary
Modifier and TypeMethodDescriptiongetValue()Returns the CSS value string.toString()Returns the CSS value string.static FontWeightReturns the enum constant of this class with the specified name.static FontWeight[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INHERIT
Inherits from parent element. -
INITIAL
Sets to default value. -
NORMAL
Normal weight, equivalent to 400. -
BOLD
Bold weight, equivalent to 700. -
BOLDER
One weight bolder than parent element. -
LIGHTER
One weight lighter than parent element. -
WEIGHT_100
Thin weight (100). -
WEIGHT_200
Extra light weight (200). -
WEIGHT_300
Light weight (300). -
WEIGHT_400
Normal weight (400). -
WEIGHT_500
Medium weight (500). -
WEIGHT_600
Semi-bold weight (600). -
WEIGHT_700
Bold weight (700). -
WEIGHT_800
Extra bold weight (800). -
WEIGHT_900
Black/heavy weight (900).
-
-
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
-
getValue
Returns the CSS value string.- Returns:
- the CSS value
-
toString
Returns the CSS value string.- Overrides:
toStringin classEnum<FontWeight>- Returns:
- the CSS value
-