Enum Class FontWeight

java.lang.Object
java.lang.Enum<FontWeight>
com.oorian.css.FontWeight
All Implemented Interfaces:
Serializable, Comparable<FontWeight>, Constable

public enum FontWeight extends Enum<FontWeight>
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:
  • Enum Constant Details

    • INHERIT

      public static final FontWeight INHERIT
      Inherits from parent element.
    • INITIAL

      public static final FontWeight INITIAL
      Sets to default value.
    • NORMAL

      public static final FontWeight NORMAL
      Normal weight, equivalent to 400.
    • BOLD

      public static final FontWeight BOLD
      Bold weight, equivalent to 700.
    • BOLDER

      public static final FontWeight BOLDER
      One weight bolder than parent element.
    • LIGHTER

      public static final FontWeight LIGHTER
      One weight lighter than parent element.
    • WEIGHT_100

      public static final FontWeight WEIGHT_100
      Thin weight (100).
    • WEIGHT_200

      public static final FontWeight WEIGHT_200
      Extra light weight (200).
    • WEIGHT_300

      public static final FontWeight WEIGHT_300
      Light weight (300).
    • WEIGHT_400

      public static final FontWeight WEIGHT_400
      Normal weight (400).
    • WEIGHT_500

      public static final FontWeight WEIGHT_500
      Medium weight (500).
    • WEIGHT_600

      public static final FontWeight WEIGHT_600
      Semi-bold weight (600).
    • WEIGHT_700

      public static final FontWeight WEIGHT_700
      Bold weight (700).
    • WEIGHT_800

      public static final FontWeight WEIGHT_800
      Extra bold weight (800).
    • WEIGHT_900

      public static final FontWeight WEIGHT_900
      Black/heavy weight (900).
  • Method Details

    • values

      public static FontWeight[] 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

      public static FontWeight valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getValue

      public String getValue()
      Returns the CSS value string.
      Returns:
      the CSS value
    • toString

      public String toString()
      Returns the CSS value string.
      Overrides:
      toString in class Enum<FontWeight>
      Returns:
      the CSS value