Class PlatformFontUsage
- java.lang.Object
-
- org.openqa.selenium.devtools.css.model.PlatformFontUsage
-
public class PlatformFontUsage extends java.lang.ObjectInformation about amount of glyphs that were rendered with given font.
-
-
Constructor Summary
Constructors Constructor Description PlatformFontUsage(java.lang.String familyName, java.lang.Boolean isCustomFont, java.lang.Number glyphCount)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetFamilyName()Font's family name reported by platform.java.lang.NumbergetGlyphCount()Amount of glyphs that were rendered with this font.java.lang.BooleangetIsCustomFont()Indicates if the font was downloaded or resolved locally.
-
-
-
Method Detail
-
getFamilyName
public java.lang.String getFamilyName()
Font's family name reported by platform.
-
getIsCustomFont
public java.lang.Boolean getIsCustomFont()
Indicates if the font was downloaded or resolved locally.
-
getGlyphCount
public java.lang.Number getGlyphCount()
Amount of glyphs that were rendered with this font.
-
-