Package Torello.Browser.BrowserAPI
Class Emulation.SafeAreaInsets
- java.lang.Object
-
- Torello.Browser.BaseType<Emulation.SafeAreaInsets>
-
- Torello.Browser.BrowserAPI.Emulation.SafeAreaInsets
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BaseType<?>>
- Enclosing class:
- Emulation
public static class Emulation.SafeAreaInsets extends BaseType<Emulation.SafeAreaInsets> implements java.io.Serializable
This Nested Java Class is declared as a "Type", which is similar to a Java Class. The CDP API Specifications list this type among the types, events & commands located in theEmulationdomain, which may be found within theBrowserAPI.
📌 All browser domain type classes will have a class name that begins with an upper case letter.[No Description Provided by Google]
EXPERIMENTAL- See Also:
- Serialized Form
Hi-Lited Source-Code:This File's Source Code:
- View Here: Torello/Browser/BrowserAPI/Emulation.java
- Open New Browser-Tab: Torello/Browser/BrowserAPI/Emulation.java
File Size: 3,229 Bytes Line Count: 96 '\n' Characters Found
Helper: Equals, HashCode, toJSON, etc
- View Here: Emulation$$SafeAreaInsets$$.java
- Open New Browser-Tab: Emulation$$SafeAreaInsets$$.java
File Size: 11,223 Bytes Line Count: 268 '\n' Characters Found
-
-
Field Summary
Serializable ID Modifier and Type Field Description protected static longserialVersionUIDType Fields / Properties (from Google & Browser Specs) Modifier and Type Field Description IntegerbottomOverrides safe-area-inset-bottom.IntegerbottomMaxOverrides safe-area-max-inset-bottom.IntegerleftOverrides safe-area-inset-left.IntegerleftMaxOverrides safe-area-max-inset-left.IntegerrightOverrides safe-area-inset-right.IntegerrightMaxOverrides safe-area-max-inset-right.IntegertopOverrides safe-area-inset-top.IntegertopMaxOverrides safe-area-max-inset-top.
-
Constructor Summary
Constructors Constructor Description SafeAreaInsets(ReadOnlyList<Boolean> isPresent, Integer top, Integer topMax, Integer left, Integer leftMax, Integer bottom, Integer bottomMax, Integer right, Integer rightMax)Constructor.
-
Method Summary
Static Builder Convert a JsonObject to a POJO Modifier and Type Method Description static Emulation.SafeAreaInsetsfromJSON(JsonObject jo)Creates an instance of this class from aJsonObject.Retrieve the Type-Descriptor Singleton-Instance for this Nested Class. Modifier and Type Method Description static NestedDescriptor<Emulation.SafeAreaInsets>descriptor()Returns this class'sNestedDescriptorsingleton-instance.-
Methods inherited from class Torello.Browser.BaseType
allEnumStrROLs, compareTo, enumStrList, enumStrValidate, enumStrValidateThrow, equals, hashCode, isPresent, optionalsValidate, optionalsValidateThrow, toJSON, toString
-
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
This fulfils the SerialVersion UID requirement for all classes that implement Java'sinterface java.io.Serializable. Using theSerializableImplementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.- See Also:
- Constant Field Values
-
top
public final java.lang.Integer top
Overrides safe-area-inset-top.
OPTIONAL
-
topMax
public final java.lang.Integer topMax
Overrides safe-area-max-inset-top.
OPTIONAL
-
left
public final java.lang.Integer left
Overrides safe-area-inset-left.
OPTIONAL
-
leftMax
public final java.lang.Integer leftMax
Overrides safe-area-max-inset-left.
OPTIONAL
-
bottom
public final java.lang.Integer bottom
Overrides safe-area-inset-bottom.
OPTIONAL
-
bottomMax
public final java.lang.Integer bottomMax
Overrides safe-area-max-inset-bottom.
OPTIONAL
-
right
public final java.lang.Integer right
Overrides safe-area-inset-right.
OPTIONAL
-
rightMax
public final java.lang.Integer rightMax
Overrides safe-area-max-inset-right.
OPTIONAL
-
-
Constructor Detail
-
SafeAreaInsets
public SafeAreaInsets(ReadOnlyList<java.lang.Boolean> isPresent, java.lang.Integer top, java.lang.Integer topMax, java.lang.Integer left, java.lang.Integer leftMax, java.lang.Integer bottom, java.lang.Integer bottomMax, java.lang.Integer right, java.lang.Integer rightMax)
Constructor. Please review this class' fields for documentation.
-
-
Method Detail
-
fromJSON
public static Emulation.SafeAreaInsets fromJSON(JsonObject jo)
Creates an instance of this class from aJsonObject.- Code:
- Exact Method Body:
return singleton.fromJSON(jo);
-
descriptor
public static NestedDescriptor<Emulation.SafeAreaInsets> descriptor()
Returns this class'sNestedDescriptorsingleton-instance. class / type.- Code:
- Exact Method Body:
return singleton.descriptor();
-
-