Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.animation |
Provides the set of classes for ease of use transition based animations.
|
Modifier and Type | Field and Description |
---|---|
private Interpolator |
Transition.cachedInterpolator |
private static Interpolator |
Transition.DEFAULT_INTERPOLATOR |
private static Interpolator |
KeyValue.DEFAULT_INTERPOLATOR |
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.
|
private Interpolator |
TransitionBuilder.interpolator |
private Interpolator |
KeyValue.interpolator |
static Interpolator |
Interpolator.LINEAR
Built-in interpolator that provides linear time interpolation.
|
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Interpolator> |
Transition.interpolator
Controls the timing for acceleration and deceleration at each
Transition cycle. |
Modifier and Type | Method and Description |
---|---|
protected Interpolator |
Transition.getCachedInterpolator()
Returns the
Interpolator , that was set when the
Transition was started. |
Interpolator |
Transition.getInterpolator()
Gets the value of the property interpolator.
|
Interpolator |
KeyValue.getInterpolator()
Interpolator to be used for calculating the key value along the
particular interval. |
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 |
---|---|
B |
TransitionBuilder.interpolator(Interpolator x)
Set the value of the
interpolator property for the instance constructed by this builder. |
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 . |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to