Class FontVariationAxis
- java.lang.Object
-
- org.openqa.selenium.devtools.v114.css.model.FontVariationAxis
-
public class FontVariationAxis extends java.lang.ObjectInformation about font variation axes for variable fonts
-
-
Constructor Summary
Constructors Constructor Description FontVariationAxis(java.lang.String tag, java.lang.String name, java.lang.Number minValue, java.lang.Number maxValue, java.lang.Number defaultValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.NumbergetDefaultValue()The default value.java.lang.NumbergetMaxValue()The maximum value (inclusive) the font supports for this tag.java.lang.NumbergetMinValue()The minimum value (inclusive) the font supports for this tag.java.lang.StringgetName()Human-readable variation name in the default language (normally, "en").java.lang.StringgetTag()The font-variation-setting tag (a.k.a.
-
-
-
Method Detail
-
getTag
public java.lang.String getTag()
The font-variation-setting tag (a.k.a. "axis tag").
-
getName
public java.lang.String getName()
Human-readable variation name in the default language (normally, "en").
-
getMinValue
public java.lang.Number getMinValue()
The minimum value (inclusive) the font supports for this tag.
-
getMaxValue
public java.lang.Number getMaxValue()
The maximum value (inclusive) the font supports for this tag.
-
getDefaultValue
public java.lang.Number getDefaultValue()
The default value.
-
-