Uses of Interface
org.reactfx.util.Interpolator
-
Packages that use Interpolator Package Description org.reactfx.util org.reactfx.value -
-
Uses of Interpolator in org.reactfx.util
Fields in org.reactfx.util declared as Interpolator Modifier and Type Field Description static Interpolator<java.lang.Double>
Interpolator. EASE_BOTH_DOUBLE
static Interpolator<java.lang.Integer>
Interpolator. EASE_BOTH_INTEGER
static Interpolator<java.lang.Long>
Interpolator. EASE_BOTH_LONG
static Interpolator<java.lang.Number>
Interpolator. EASE_BOTH_NUMBER
static Interpolator<java.lang.Double>
Interpolator. EASE_IN_DOUBLE
static Interpolator<java.lang.Integer>
Interpolator. EASE_IN_INTEGER
static Interpolator<java.lang.Long>
Interpolator. EASE_IN_LONG
static Interpolator<java.lang.Number>
Interpolator. EASE_IN_NUMBER
static Interpolator<java.lang.Double>
Interpolator. EASE_OUT_DOUBLE
static Interpolator<java.lang.Integer>
Interpolator. EASE_OUT_INTEGER
static Interpolator<java.lang.Long>
Interpolator. EASE_OUT_LONG
static Interpolator<java.lang.Number>
Interpolator. EASE_OUT_NUMBER
static Interpolator<java.lang.Double>
Interpolator. LINEAR_DOUBLE
static Interpolator<java.lang.Integer>
Interpolator. LINEAR_INTEGER
static Interpolator<java.lang.Long>
Interpolator. LINEAR_LONG
static Interpolator<java.lang.Number>
Interpolator. LINEAR_NUMBER
Methods in org.reactfx.util that return Interpolator Modifier and Type Method Description static <T extends javafx.animation.Interpolatable<T>>
Interpolator<T>Interpolator. get()
-
Uses of Interpolator in org.reactfx.value
Fields in org.reactfx.value declared as Interpolator Modifier and Type Field Description private Interpolator<T>
AnimatedVal. interpolator
Methods in org.reactfx.value with parameters of type Interpolator Modifier and Type Method Description default Val<T>
Val. animate(java.time.Duration duration, Interpolator<T> interpolator)
default Val<T>
Val. animate(java.util.function.BiFunction<? super T,? super T,java.time.Duration> duration, Interpolator<T> interpolator)
static <T> Val<T>
Val. animate(javafx.beans.value.ObservableValue<T> obs, java.time.Duration duration, Interpolator<T> interpolator)
Creates a new Val that gradually transitions to the value of the given ObservableValueobs
every timeobs
changes.static <T> Val<T>
Val. animate(javafx.beans.value.ObservableValue<T> obs, java.util.function.BiFunction<? super T,? super T,java.time.Duration> duration, Interpolator<T> interpolator)
Creates a new Val that gradually transitions to the value of the given ObservableValueobs
every timeobs
changes.Constructors in org.reactfx.value with parameters of type Interpolator Constructor Description AnimatedVal(javafx.beans.value.ObservableValue<T> src, java.util.function.BiFunction<? super T,? super T,java.time.Duration> duration, Interpolator<T> interpolator)
-