Top Description Fields Constructors Methods
javafx.animation

public final Class KeyValue

extends Object
Class Inheritance
Imports
com.sun.javafx.animation.KeyValueHelper, .KeyValueType, javafx.beans.NamedArg, javafx.beans.value.WritableBooleanValue, .WritableDoubleValue, .WritableFloatValue, .WritableIntegerValue, .WritableLongValue, .WritableNumberValue, .WritableValue

Defines a key value to be interpolated for a particular interval along the animation. A KeyFrame, which defines a specific point on a timeline, can hold multiple KeyValues. KeyValue is an immutable class.

A KeyValue is defined by a target, which is an implementation of javafx.beans.value.WritableValue, an end value and an Interpolator.

Most interpolators define the interpolation between two KeyFrames. (The only exception are tangent-interpolators.) The KeyValue of the second KeyFrame (in forward direction) specifies the interpolator to be used in the interval.

Tangent-interpolators define the interpolation to the left and to the right of a KeyFrame (see Interpolator.TANGENT).

By default, Interpolator#LINEAR is used in the interval.

Since
JavaFX 2.0
See Also
Timeline, KeyFrame, Interpolator

Field Summary

Modifier and TypeField and Description
private static final Interpolator
private final Object
private final Interpolator
private final WritableValue<?>
private final KeyValueType

Constructor Summary

AccessConstructor and Description
public <
the type of the KeyValue
T
>
KeyValue(WritableValue<T>
the target
target
,
T
the end value
endValue
,
Interpolator interpolator)

Creates a KeyValue.

public <
the type of the KeyValue
T
>
KeyValue(WritableValue<T>
the target
target
,
T
the end value
endValue
)

Creates a KeyValue that uses Interpolator#LINEAR.

Method Summary

Modifier and TypeMethod and Description
public boolean
equals(Object
the reference object with which to compare.
obj
)

Overrides java.lang.Object.equals.

Indicates whether some other object is "equal to" this one.

public Object

Returns:

the end value
getEndValue
()

Returns the end value of this KeyValue

public Interpolator

Returns:

the interpolator to be used for calculating the key value along the particular interval
getInterpolator
()

Interpolator to be used for calculating the key value along the particular interval.

public WritableValue<?>

Returns:

the target
getTarget
()

Returns the target of this KeyValue

pack-priv KeyValueType
public int

Returns:

the hash code
hashCode
()

Overrides java.lang.Object.hashCode.

Returns a hash code for this KeyValue object.

public String

Returns:

the string representation
toString
()

Overrides java.lang.Object.toString.

Returns a string representation of this KeyValue object.

Inherited from java.lang.Object:
clonefinalizegetClassnotifynotifyAllwaitwaitwait

Field Detail

DEFAULT_INTERPOLATORback to summary
private static final Interpolator DEFAULT_INTERPOLATOR
endValueback to summary
private final Object endValue
interpolatorback to summary
private final Interpolator interpolator
targetback to summary
private final WritableValue<?> target
typeback to summary
private final KeyValueType type

Constructor Detail

KeyValueback to summary
public <T> KeyValue(WritableValue<T> target, T endValue, Interpolator interpolator)

Creates a KeyValue.

Parameters
<T>
the type of the KeyValue
target:WritableValue<T>

the target

endValue:T

the end value

interpolator:Interpolator

the Interpolator

Exceptions
NullPointerException:
if target or interpolator are null
KeyValueback to summary
public <T> KeyValue(WritableValue<T> target, T endValue)

Creates a KeyValue that uses Interpolator#LINEAR.

Parameters
<T>
the type of the KeyValue
target:WritableValue<T>

the target

endValue:T

the end value

Exceptions
NullPointerException:
if target or interpolator are null

Method Detail

equalsback to summary
public boolean equals(Object obj)

Overrides java.lang.Object.equals.

Indicates whether some other object is "equal to" this one. Two KeyValues are considered equal, if their target, endValue, and interpolator are equal.

Parameters
obj:Object

Doc from java.lang.Object.equals.

the reference object with which to compare.

Returns:boolean

Doc from java.lang.Object.equals.

true if this object is the same as the obj argument; false otherwise.

Annotations
@Override
getEndValueback to summary
public Object getEndValue()

Returns the end value of this KeyValue

Returns:Object

the end value

getInterpolatorback to summary
public Interpolator getInterpolator()

Interpolator to be used for calculating the key value along the particular interval. By default, Interpolator#LINEAR is used.

Returns:Interpolator

the interpolator to be used for calculating the key value along the particular interval

getTargetback to summary
public WritableValue<?> getTarget()

Returns the target of this KeyValue

Returns:WritableValue<?>

the target

getTypeback to summary
pack-priv KeyValueType getType()
hashCodeback to summary
public int hashCode()

Overrides java.lang.Object.hashCode.

Returns a hash code for this KeyValue object.

Returns:int

the hash code

Annotations
@Override
toStringback to summary
public String toString()

Overrides java.lang.Object.toString.

Returns a string representation of this KeyValue object.

Returns:String

the string representation

Annotations
@Override