Package Torello.Browser.BrowserAPI
Class Animation.AnimationEffect
- java.lang.Object
-
- Torello.Browser.BaseType<Animation.AnimationEffect>
-
- Torello.Browser.BrowserAPI.Animation.AnimationEffect
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BaseType<?>>
- Enclosing class:
- Animation
public static class Animation.AnimationEffect extends BaseType<Animation.AnimationEffect> 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 theAnimationdomain, which may be found within theBrowserAPI.
📌 All browser domain type classes will have a class name that begins with an upper case letter.AnimationEffect instance- See Also:
- Serialized Form
Hi-Lited Source-Code:This File's Source Code:
- View Here: Torello/Browser/BrowserAPI/Animation.java
- Open New Browser-Tab: Torello/Browser/BrowserAPI/Animation.java
File Size: 3,493 Bytes Line Count: 91 '\n' Characters Found
Helper: Equals, HashCode, toJSON, etc
- View Here: Animation$$AnimationEffect$$.java
- Open New Browser-Tab: Animation$$AnimationEffect$$.java
File Size: 12,658 Bytes Line Count: 298 '\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 IntegerbackendNodeIdAnimationEffect's target node.NumberdelayAnimationEffect's delay.StringdirectionAnimationEffect's playback direction.NumberdurationAnimationEffect's iteration duration.StringeasingAnimationEffect's timing function.NumberendDelayAnimationEffect's end delay.StringfillAnimationEffect's fill mode.NumberiterationsAnimationEffect's iterations.NumberiterationStartAnimationEffect's iteration start.Animation.KeyframesRulekeyframesRuleAnimationEffect's keyframes.
-
Constructor Summary
Constructors Constructor Description AnimationEffect(ReadOnlyList<Boolean> isPresent, Number delay, Number endDelay, Number iterationStart, Number iterations, Number duration, String direction, String fill, Integer backendNodeId, Animation.KeyframesRule keyframesRule, String easing)Constructor.
-
Method Summary
Static Builder Convert a JsonObject to a POJO Modifier and Type Method Description static Animation.AnimationEffectfromJSON(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<Animation.AnimationEffect>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
-
delay
public final java.lang.Number delay
AnimationEffect's delay.
-
endDelay
public final java.lang.Number endDelay
AnimationEffect's end delay.
-
iterationStart
public final java.lang.Number iterationStart
AnimationEffect's iteration start.
-
iterations
public final java.lang.Number iterations
AnimationEffect's iterations.
-
duration
public final java.lang.Number duration
AnimationEffect's iteration duration. Milliseconds for time based animations and percentage [0 - 100] for scroll driven animations (i.e. when viewOrScrollTimeline exists).
-
direction
public final java.lang.String direction
AnimationEffect's playback direction.
-
fill
public final java.lang.String fill
AnimationEffect's fill mode.
-
backendNodeId
public final java.lang.Integer backendNodeId
AnimationEffect's target node.
OPTIONAL
-
keyframesRule
public final Animation.KeyframesRule keyframesRule
AnimationEffect's keyframes.
OPTIONAL
-
easing
public final java.lang.String easing
AnimationEffect's timing function.
-
-
Constructor Detail
-
AnimationEffect
public AnimationEffect(ReadOnlyList<java.lang.Boolean> isPresent, java.lang.Number delay, java.lang.Number endDelay, java.lang.Number iterationStart, java.lang.Number iterations, java.lang.Number duration, java.lang.String direction, java.lang.String fill, java.lang.Integer backendNodeId, Animation.KeyframesRule keyframesRule, java.lang.String easing)
Constructor. Please review this class' fields for documentation.
-
-
Method Detail
-
fromJSON
public static Animation.AnimationEffect fromJSON(JsonObject jo)
Creates an instance of this class from aJsonObject.- Code:
- Exact Method Body:
return singleton.fromJSON(jo);
-
descriptor
public static NestedDescriptor<Animation.AnimationEffect> descriptor()
Returns this class'sNestedDescriptorsingleton-instance. class / type.- Code:
- Exact Method Body:
return singleton.descriptor();
-
-