Module  javafx.graphics
软件包  javafx.scene.text

Enum FontWeight

    • Enum Constant Detail

      • THIN

        public static final FontWeight THIN
        代表瘦体重(100)。
      • EXTRA_LIGHT

        public static final FontWeight EXTRA_LIGHT
        代表“Extra Light”字体重量(200)。
      • LIGHT

        public static final FontWeight LIGHT
        表示轻型字体重量(300)。
      • NORMAL

        public static final FontWeight NORMAL
        表示正常字体重量(400)。
      • MEDIUM

        public static final FontWeight MEDIUM
        表示中等字体重量(500)。
      • SEMI_BOLD

        public static final FontWeight SEMI_BOLD
        代表“Demi Bold”字体重量(600)。
      • BOLD

        public static final FontWeight BOLD
        代表粗体字体重(700)。
      • EXTRA_BOLD

        public static final FontWeight EXTRA_BOLD
        代表“Extra Bold”字体重量(800)。
      • BLACK

        public static final FontWeight BLACK
        代表黑色字体重量(900)。
    • 方法详细信息

      • values

        public static FontWeight[] values​()
        按照它们声明的顺序返回一个包含此枚举类型常量的数组。 该方法可用于遍历常量如下:
          for (FontWeight c : FontWeight.values())
            System.out.println(c); 
        结果
        一个包含这个枚举类型的常量的数组,按照它们被声明的顺序
      • valueOf

        public static FontWeight valueOf​(String name)
        以指定的名称返回此类型的枚举常量。 字符串必须完全匹配用于声明此类型的枚举常量的标识符。 (不允许使用外来空白字符。)
        参数
        name - 要返回的枚举常量的名称。
        结果
        具有指定名称的枚举常数
        异常
        IllegalArgumentException - 如果此枚举类型没有指定名称的常量
        NullPointerException - 如果参数为空
      • getWeight

        public int getWeight​()
        返回此 FontWeight指定的视觉重量(黑度或厚度)。
        结果
        重量
      • findByName

        public static FontWeight findByName​(String name)
        以其名称返回 FontWeight
        参数
        name - 名称 FontWeight
        结果
        FontWeight名称
      • findByWeight

        public static FontWeight findByWeight​(int weight)
        返回由CSS和OpenType规范定义的权重值最接近的FontWeight 如果两个FontWeight值之间的指定值是等距的,则实施可以自行选择。 此查找不引用字体,因此这完全是映射到FontWeight实例的集合,并不意味着该权重的字体将可用。
        参数
        weight - 重量值
        结果
        最近 FontWeight