default Linkable<T> |
Linkable.filter(Predicate<? super T> predicate) |
Returns a Linkable that wraps this Linkable and filters values using the
provided predicate function.
|
default <R> Linkable<R> |
Linkable.map(Function<? super T,? extends R> function) |
Returns a Linkable that wraps this Linkable and transforms values using
the provided mapping function.
|
default <R> Linkable<R> |
Linkable.Double.mapTo(DoubleFunction<? extends R> function) |
Returns a Linkable that wraps this Linkable.Double and transforms
values using the provided mapping function.
|
default <R> Linkable<R> |
Linkable.Int.mapTo(IntFunction<? extends R> function) |
Returns a Linkable that wraps this Linkable.Int and transforms
values using the provided mapping function.
|
Linkable<List<T>> |
Ref.Input.onUpdate() |
Returns a new Linkable for reacting to updates in the list of
values.
|
<T extends Value> Linkable<T> |
Input.valuesAs(Class<T> type) |
Return a Linkable of inputs as the provided Value subclass.
|
<T> Linkable<T> |
Input.valuesAs(Function<Value,T> converter) |
Return a Linkable of inputs transformed by the provided converter
from Value to the required type.
|
<T extends Value> Linkable<T> |
Property.valuesAs(Class<T> type) |
Return a new Linkable for observing changing values.
|
<T> Linkable<T> |
Property.valuesAs(Function<Value,T> converter) |
Return a new Linkable for observing changing values.
|