public final class KeyFrame
extends java.lang.Object
Timeline.
The developer controls the interpolation of a set of variables for the
interval between successive key frames by providing a target value and an
Interpolator associated with each variable. The variables are
interpolated such that they will reach their target value at the specified
time. An onFinished function is invoked on each KeyFrame if one
is provided. A KeyFrame can optionally have a name, which
will result in a cuepoint that is automatically added to the Timeline.
Timeline,
KeyValue,
Interpolator| Constructor and Description |
|---|
KeyFrame(Duration time,
EventHandler<ActionEvent> onFinished,
KeyValue... values)
Constructor of
KeyFrame |
KeyFrame(Duration time,
KeyValue... values)
Constructor of
KeyFrame |
KeyFrame(Duration time,
java.lang.String name,
EventHandler<ActionEvent> onFinished,
java.util.Collection<KeyValue> values)
Constructor of
KeyFrame |
KeyFrame(Duration time,
java.lang.String name,
EventHandler<ActionEvent> onFinished,
KeyValue... values)
Constructor of
KeyFrame |
KeyFrame(Duration time,
java.lang.String name,
KeyValue... values)
Constructor of
KeyFrame |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj)
Indicates whether some other object is "equal to" this one.
|
java.lang.String |
getName()
Returns the
name of this KeyFrame. |
EventHandler<ActionEvent> |
getOnFinished()
Returns the
onFinished event handler of this KeyFrame. |
Duration |
getTime()
Returns the time offset of this
KeyFrame. |
java.util.Set<KeyValue> |
getValues()
Returns an immutable
Set of KeyValue instances. |
int |
hashCode()
Returns a hash code for this
KeyFrame object. |
java.lang.String |
toString()
Returns a string representation of this
KeyFrame object. |
public KeyFrame(Duration time, java.lang.String name, EventHandler<ActionEvent> onFinished, java.util.Collection<KeyValue> values)
KeyFrame
If a passed in KeyValue is null or a duplicate, it will
be ignored.
time - the timename - the nameonFinished - the onFinished-handlervalues - a ObservableList of
KeyValue instancesjava.lang.NullPointerException - if time is nulljava.lang.IllegalArgumentException - if time is invalid (see time)public KeyFrame(Duration time, java.lang.String name, EventHandler<ActionEvent> onFinished, KeyValue... values)
KeyFrame
If a passed in KeyValue is null or a duplicate, it will
be ignored.
time - the timename - the nameonFinished - the onFinished-handlervalues - the KeyValue instancesjava.lang.NullPointerException - if time is nulljava.lang.IllegalArgumentException - if time is invalid (see time)public KeyFrame(Duration time, EventHandler<ActionEvent> onFinished, KeyValue... values)
KeyFrametime - the timeonFinished - the onFinished-handlervalues - the KeyValue instancesjava.lang.NullPointerException - if time is nulljava.lang.IllegalArgumentException - if time is invalid (see time)public KeyFrame(Duration time, java.lang.String name, KeyValue... values)
KeyFramepublic Duration getTime()
KeyFrame.
The returned Duration defines the time offset within
a single cycle of a Timeline at which the KeyValues will be set and at which the onFinished function
variable will be called.
The time of a KeyFrame has to be greater than or equal to
Duration.ZERO and it cannot be
Duration.UNKNOWN.
Note: While the unit of time is a millisecond, the granularity
depends on the underlying operating system and will in general be larger.
For example animations on desktop systems usually run with a maximum of
60fps which gives a granularity of ~17 ms.
public java.util.Set<KeyValue> getValues()
Set of KeyValue instances.
A KeyValue defines a target and the desired value that should be
interpolated at the specified time of this KeyFrame.public EventHandler<ActionEvent> getOnFinished()
onFinished event handler of this KeyFrame.
The onFinished event handler is a function that is called when
the elapsed time on a cycle passes the specified time of this
KeyFrame. The onFinished function variable will be called
if the elapsed time passes the indicated value, even if it never equaled
the time value exactly.public java.lang.String getName()
public java.lang.String toString()
KeyFrame object.toString in class java.lang.ObjectKeyFrame object.public int hashCode()
KeyFrame object.hashCode in class java.lang.ObjectKeyFrame object.public boolean equals(java.lang.Object obj)
KeyFrames are considered equal, if their time, onFinished, and values
are equal.equals in class java.lang.ObjectCopyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms.