Uses of Interface
org.reactfx.value.Var
Packages that use Var
-
Uses of Var in org.reactfx.value
Subinterfaces of Var in org.reactfx.valueModifier and TypeInterfaceDescriptioninterface
Writable value whose invalidation and change notifications can be temporarily suspended.Classes in org.reactfx.value that implement VarModifier and TypeClassDescription(package private) class
FlatMappedVar<T,
U, O extends javafx.beans.property.Property<U>> (package private) class
SimpleVar<T>
(package private) class
(package private) class
VarFromVal<T>
(package private) class
VarWrapper<T>
Fields in org.reactfx.value declared as VarMethods in org.reactfx.value that return VarModifier and TypeMethodDescriptionVar.doubleVar
(javafx.beans.property.DoubleProperty p) Converts DoubleProperty toVar<Double>
to help deal with the consequences of DoubleProperty not being a subtype ofProperty<Double>
.Var.floatVar
(javafx.beans.property.FloatProperty p) Converts FloatProperty toVar<Float>
to help deal with the consequences of FloatProperty not being a subtype ofProperty<Float>
.static <T> Var
<T> Creates a Var from ObservableValue, using the givensetValue
function in place of theWritableValue.setValue(Object)
method.Var.integerVar
(javafx.beans.property.IntegerProperty p) Converts IntegerProperty toVar<Integer>
to help deal with the consequences of IntegerProperty not being a subtype ofProperty<Integer>
.Var.longVar
(javafx.beans.property.LongProperty p) Converts LongProperty toVar<Long>
to help deal with the consequences of LongProperty not being a subtype ofProperty<Long>
.default <U> Var
<U> Var.mapBidirectional
(Function<? super T, ? extends U> f, Function<? super U, ? extends T> g) static <T,
U> Var <U> Var.mapBidirectional
(javafx.beans.property.Property<T> src, Function<? super T, ? extends U> f, Function<? super U, ? extends T> g) static <T> Var
<T> Var.newSimpleVar
(T initialValue) default <U> Var
<U> Similar toVal.flatMap(Function)
, except the returned Val is also a Var.default <U> Var
<U> static <T,
U> Var <U> Val.selectVar
(javafx.beans.value.ObservableValue<T> src, Function<? super T, ? extends javafx.beans.property.Property<U>> f) static <T,
U> Var <U> Val.selectVar
(javafx.beans.value.ObservableValue<T> src, Function<? super T, ? extends javafx.beans.property.Property<U>> f, U resetToOnUnbind) Constructors in org.reactfx.value with parameters of type Var