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 TypeInterfaceDescriptioninterfaceWritable value whose invalidation and change notifications can be temporarily suspended.Methods 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 givensetValuefunction 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> Val.selectVar(Function<? super T, ? extends javafx.beans.property.Property<U>> f, U resetToOnUnbind) 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)