Package Torello.Browser
Class CSS.FontFace
- java.lang.Object
-
- Torello.Java.JSON.BaseType
-
- Torello.Browser.CSS.FontFace
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- CSS
public static class CSS.FontFace extends BaseType implements java.io.Serializable
Properties of a web font: https://www.w3.org/TR/2008/REC-CSS2-20080411/fonts.html#font-descriptions and additional information such as platformFontFamily and fontVariationAxes.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/Browser/CSS.java
- Open New Browser-Tab: Torello/Browser/CSS.java
File Size: 6,520 Bytes Line Count: 152 '\n' Characters Found
-
-
Field Summary
Serializable ID Modifier and Type Field protected static long
serialVersionUID
For Object Serialization.Type Properties Modifier and Type Field String
fontFamily
The font-family.String
fontStretch
The font-stretch.String
fontStyle
The font-style.String
fontVariant
The font-variant.CSS.FontVariationAxis[]
fontVariationAxes
Available variation settings (a.k.a.String
fontWeight
The font-weight.String
platformFontFamily
The resolved platform font familyString
src
The src.String
unicodeRange
The unicode-range.
-
Constructor Summary
Constructors Constructor Description FontFace(String fontFamily, String fontStyle, String fontVariant, String fontWeight, String fontStretch, String unicodeRange, String src, String platformFontFamily, CSS.FontVariationAxis[] fontVariationAxes)
ConstructorFontFace(JsonObject jo)
JSON Object Constructor
-
Method Summary
Generate Array that Indicates which Parameter are Optional Modifier and Type Method boolean[]
optionals()
Implementing this method allows sub-classes to specify which JSON Properties may be absent or null.Methods: class java.lang.Object Modifier and Type Method boolean
equals(Object other)
Checks whether'this'
equals an input Java-Object
int
hashCode()
Generates a Hash-Code for'this'
instance
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
For Object Serialization. java.io.Serializable- See Also:
- Constant Field Values
-
fontFamily
public final java.lang.String fontFamily
The font-family.
-
fontStyle
public final java.lang.String fontStyle
The font-style.
-
fontVariant
public final java.lang.String fontVariant
The font-variant.
-
fontWeight
public final java.lang.String fontWeight
The font-weight.
-
fontStretch
public final java.lang.String fontStretch
The font-stretch.
-
unicodeRange
public final java.lang.String unicodeRange
The unicode-range.
-
src
public final java.lang.String src
The src.
-
platformFontFamily
public final java.lang.String platformFontFamily
The resolved platform font family
-
fontVariationAxes
public final CSS.FontVariationAxis[] fontVariationAxes
Available variation settings (a.k.a. "axes").
OPTIONAL
-
-
Constructor Detail
-
FontFace
public FontFace(java.lang.String fontFamily, java.lang.String fontStyle, java.lang.String fontVariant, java.lang.String fontWeight, java.lang.String fontStretch, java.lang.String unicodeRange, java.lang.String src, java.lang.String platformFontFamily, CSS.FontVariationAxis[] fontVariationAxes)
Constructor- Parameters:
fontFamily
- The font-family.fontStyle
- The font-style.fontVariant
- The font-variant.fontWeight
- The font-weight.fontStretch
- The font-stretch.unicodeRange
- The unicode-range.src
- The src.platformFontFamily
- The resolved platform font familyfontVariationAxes
- Available variation settings (a.k.a. "axes").
OPTIONAL
-
FontFace
public FontFace(JsonObject jo)
JSON Object Constructor- Parameters:
jo
- A Json-Object having data about an instance of'FontFace'
.
-
-
Method Detail
-
optionals
public boolean[] optionals()
Description copied from class:BaseType
Implementing this method allows sub-classes to specify which JSON Properties may be absent or null. When binding aJsonObject
to a Java-Object, if some of the expected fields for the Java-Object map to Properties which might be left-out or omitted, then that may be indicated by setting that fields array positionTRUE
.
NOTE: This array should have a length equal to the number of fields contained by the Java Object. The first boolean in the array should specify whether the first Object Field may by absent. The second boolean should specify whether the second Object Field is optional in the JSON - and so on and so forth...
-
equals
public boolean equals(java.lang.Object other)
Checks whether'this'
equals an input Java-Object
- Overrides:
equals
in classjava.lang.Object
- Code:
- Exact Method Body:
if (other == null) return false; if (other.getClass() != this.getClass()) return false; FontFace o = (FontFace) other; return Objects.equals(this.fontFamily, o.fontFamily) && Objects.equals(this.fontStyle, o.fontStyle) && Objects.equals(this.fontVariant, o.fontVariant) && Objects.equals(this.fontWeight, o.fontWeight) && Objects.equals(this.fontStretch, o.fontStretch) && Objects.equals(this.unicodeRange, o.unicodeRange) && Objects.equals(this.src, o.src) && Objects.equals(this.platformFontFamily, o.platformFontFamily) && Arrays.deepEquals(this.fontVariationAxes, o.fontVariationAxes);
-
hashCode
public int hashCode()
Generates a Hash-Code for'this'
instance- Overrides:
hashCode
in classjava.lang.Object
- Code:
- Exact Method Body:
return Objects.hashCode(this.fontFamily) + Objects.hashCode(this.fontStyle) + Objects.hashCode(this.fontVariant) + Objects.hashCode(this.fontWeight) + Objects.hashCode(this.fontStretch) + Objects.hashCode(this.unicodeRange) + Objects.hashCode(this.src) + Objects.hashCode(this.platformFontFamily) + Arrays.deepHashCode(this.fontVariationAxes);
-
-