Uses of Class
org.jdesktop.animation.timing.interpolation.KeyValues

Packages that use KeyValues
org.jdesktop.animation.timing.interpolation Provides a mechanism for animating object properties between different values. 
 

Uses of KeyValues in org.jdesktop.animation.timing.interpolation
 

Methods in org.jdesktop.animation.timing.interpolation that return KeyValues
static
<T> KeyValues<T>
KeyValues.create(Evaluator evaluator, T... params)
          Constructs a KeyValues object from a Evaluator and one or more values.
static
<T> KeyValues<T>
KeyValues.create(T... params)
          Constructs a KeyValues object from one or more values.
 

Constructors in org.jdesktop.animation.timing.interpolation with parameters of type KeyValues
KeyFrames(KeyValues keyValues)
          Simplest variation; determine keyTimes based on even division of 0-1 range based on number of keyValues.
KeyFrames(KeyValues keyValues, Interpolator... interpolators)
          Utility constructor that assumes even division of times according to size of keyValues and interpolation according to interpolators parameter.
KeyFrames(KeyValues keyValues, KeyTimes keyTimes)
          This variant takes both keyValues (values at each point in time) and keyTimes (times at which values are sampled).
KeyFrames(KeyValues keyValues, KeyTimes keyTimes, Interpolator... interpolators)
          Full constructor: caller provides an instance of all key* structures which will be used to calculate between all times in the keyTimes list.