Package com.iizix.prop.font
Enum Class BrowserFontFormat
- All Implemented Interfaces:
Serializable
,Comparable<BrowserFontFormat>
,Constable
The various browsers and font formats to choose.
* IE: The font format only works when set to be "installable".
* Firefox: Disabled by default, but can be enabled (need to set a flag to "true" to use WOFF2).
The numbers in the table specifies the first browser version that fully supports the font format.
Font format IE Chrome Firefox Safari Opera TTF/OTF 9.0* 4.0 3.5 3.1 10.0 WOFF 9.0 5.0 3.6 5.1 11.1 WOFF2 no 36 39 no 26.0 Android 5.x SVG no 4.0 no 3.2 9.0 EOT 6.0 no no no no
* IE: The font format only works when set to be "installable".
* Firefox: Disabled by default, but can be enabled (need to set a flag to "true" to use WOFF2).
Verified on "caniuse.com" for WOFF2, WOFF, etc support.
- Author:
- Christopher Mindus
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Enum Constant Summary
Enum ConstantDescriptionAndroid 4.4+ to 5.x.Android 5.x, browser version 40 +.Android, before 4.4.Chrome, before version 36.Chrome, version 36+Firefox, version 38-Firefox, version 39+.Internet Explorer 9+.Opera, not Opera Mini (but this is skipped as Opera Mini doesn't support FontFace at all).All other browsers, to use WOFF and then TrueTypeSafari.Field Summary
Method Summary
Modifier and TypeMethodDescriptionstatic BrowserFontFormat
fromParsedUserAgent
(ua_parser.Client client) Finds the browser font format from the parsed client user agent.static BrowserFontFormat
Returns the enum constant of this class with the specified name.static BrowserFontFormat[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
Enum Constant Details
MSIE
Internet Explorer 9+.Chrome2
Chrome, version 36+Chrome
Chrome, before version 36.Android5
Android 5.x, browser version 40 +.Android4_4
Android 4.4+ to 5.x.AndroidOlder
Android, before 4.4.Safari
Safari.Firefox2
Firefox, version 39+.Firefox
Firefox, version 38-Opera
Opera, not Opera Mini (but this is skipped as Opera Mini doesn't support FontFace at all).OTHER
All other browsers, to use WOFF and then TrueType
Field Details
formats
The font formats possible, in priority order.
Method Details
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
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 nameNullPointerException
- if the argument is null
fromParsedUserAgent
Finds the browser font format from the parsed client user agent.- Parameters:
client
- The parsed client user agent instance.- Returns:
- The matching browser font format.