Package | Description |
---|---|
javafx.animation |
Provides the set of classes for ease of use transition based animations.
|
Modifier and Type | Field and Description |
---|---|
static Interpolator |
Interpolator.DISCRETE
Built-in interpolator that provides discrete time interpolation.
|
static Interpolator |
Interpolator.EASE_BOTH
Built-in interpolator instance that provides ease in/out behavior.
|
static Interpolator |
Interpolator.EASE_IN
Built-in interpolator instance that provides ease in behavior.
|
static Interpolator |
Interpolator.EASE_OUT
Built-in interpolator instance that provides ease out behavior.
|
static Interpolator |
Interpolator.LINEAR
Built-in interpolator that provides linear time interpolation.
|
Modifier and Type | Method and Description |
---|---|
protected Interpolator |
Transition.getCachedInterpolator()
Returns the
Interpolator , that was set when the
Transition was started. |
Interpolator |
KeyValue.getInterpolator()
Interpolator to be used for calculating the key value along the
particular interval. |
Interpolator |
Transition.getInterpolator()
Gets the value of the property interpolator.
|
static Interpolator |
Interpolator.SPLINE(double x1,
double y1,
double x2,
double y2)
Creates an
Interpolator , which curve() is
shaped using the spline control points defined by (x1 , y1
) and (x2 , y2 ). |
static Interpolator |
Interpolator.TANGENT(Duration t,
double v)
Creates a tangent interpolator, for which in-tangent and out-tangent are
identical.
|
static Interpolator |
Interpolator.TANGENT(Duration t1,
double v1,
Duration t2,
double v2)
Create a tangent interpolator.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Interpolator> |
Transition.interpolatorProperty()
Controls the timing for acceleration and deceleration at each
Transition cycle. |
Modifier and Type | Method and Description |
---|---|
void |
Transition.setInterpolator(Interpolator value)
Sets the value of the property interpolator.
|
Constructor and Description |
---|
KeyValue(WritableValue<T> target,
T endValue,
Interpolator interpolator)
Creates a
KeyValue . |
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.