Class FontFamilies
- java.lang.Object
-
- org.openqa.selenium.devtools.page.model.FontFamilies
-
@Beta public class FontFamilies extends java.lang.Object
Generic font families collection.
-
-
Constructor Summary
Constructors Constructor Description FontFamilies(java.lang.String standard, java.lang.String fixed, java.lang.String serif, java.lang.String sansSerif, java.lang.String cursive, java.lang.String fantasy, java.lang.String pictograph)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCursive()
The cursive font-family.java.lang.String
getFantasy()
The fantasy font-family.java.lang.String
getFixed()
The fixed font-family.java.lang.String
getPictograph()
The pictograph font-family.java.lang.String
getSansSerif()
The sansSerif font-family.java.lang.String
getSerif()
The serif font-family.java.lang.String
getStandard()
The standard font-family.
-
-
-
Method Detail
-
getStandard
public java.lang.String getStandard()
The standard font-family.
-
getFixed
public java.lang.String getFixed()
The fixed font-family.
-
getSerif
public java.lang.String getSerif()
The serif font-family.
-
getSansSerif
public java.lang.String getSansSerif()
The sansSerif font-family.
-
getCursive
public java.lang.String getCursive()
The cursive font-family.
-
getFantasy
public java.lang.String getFantasy()
The fantasy font-family.
-
getPictograph
public java.lang.String getPictograph()
The pictograph font-family.
-
-