public final class FilteringBindings
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static <T> javafx.beans.binding.ObjectBinding<T> |
filterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<T> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter)
Creates an object binding with the first element of an observable list after filtering.
|
static <T> javafx.beans.binding.ObjectBinding<T> |
filterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<T> supplier,
java.util.function.Predicate<? super T> filter)
Creates an object binding with the first element of an observable list after filtering.
|
static <T> javafx.beans.binding.ObjectBinding<T> |
filterThenFindFirst(javafx.collections.ObservableList<T> items,
T defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter)
Creates an object binding with the first element of an observable list after filtering.
|
static <T> javafx.beans.binding.ObjectBinding<T> |
filterThenFindFirst(javafx.collections.ObservableList<T> items,
T defaultValue,
java.util.function.Predicate<? super T> filter)
Creates an object binding with the first element of an observable list after filtering.
|
static <K,V> javafx.beans.binding.ObjectBinding<V> |
filterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<V> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter)
Creates an object binding with the first value of an observable map after filtering.
|
static <K,V> javafx.beans.binding.ObjectBinding<V> |
filterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<V> supplier,
java.util.function.Predicate<? super V> filter)
Creates an object binding with the first value of an observable map after filtering.
|
static <K,V> javafx.beans.binding.ObjectBinding<V> |
filterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
V defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter)
Creates an object binding with the first value of an observable map after filtering.
|
static <K,V> javafx.beans.binding.ObjectBinding<V> |
filterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
V defaultValue,
java.util.function.Predicate<? super V> filter)
Creates an object binding with the first value of an observable map after filtering.
|
static <T> javafx.beans.binding.ObjectBinding<T> |
filterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<T> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter)
Creates an object binding with the first element of an observable set after filtering.
|
static <T> javafx.beans.binding.ObjectBinding<T> |
filterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<T> supplier,
java.util.function.Predicate<? super T> filter)
Creates an object binding with the first element of an observable set after filtering.
|
static <T> javafx.beans.binding.ObjectBinding<T> |
filterThenFindFirst(javafx.collections.ObservableSet<T> items,
T defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter)
Creates an object binding with the first element of an observable set after filtering.
|
static <T> javafx.beans.binding.ObjectBinding<T> |
filterThenFindFirst(javafx.collections.ObservableSet<T> items,
T defaultValue,
java.util.function.Predicate<? super T> filter)
Creates an object binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.BooleanBinding |
filterThenFindFirstBoolean(javafx.collections.ObservableList<java.lang.Boolean> items,
java.lang.Boolean defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Boolean>> filter)
Creates a boolean binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.BooleanBinding |
filterThenFindFirstBoolean(javafx.collections.ObservableList<java.lang.Boolean> items,
java.lang.Boolean defaultValue,
java.util.function.Predicate<? super java.lang.Boolean> filter)
Creates a boolean binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.BooleanBinding |
filterThenFindFirstBoolean(javafx.collections.ObservableList<java.lang.Boolean> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Boolean>> filter)
Creates a boolean binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.BooleanBinding |
filterThenFindFirstBoolean(javafx.collections.ObservableList<java.lang.Boolean> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
java.util.function.Predicate<? super java.lang.Boolean> filter)
Creates a boolean binding with the first element of an observable list after filtering.
|
static <K> javafx.beans.binding.BooleanBinding |
filterThenFindFirstBoolean(javafx.collections.ObservableMap<K,java.lang.Boolean> items,
java.lang.Boolean defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Boolean>> filter)
Creates a boolean binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.BooleanBinding |
filterThenFindFirstBoolean(javafx.collections.ObservableMap<K,java.lang.Boolean> items,
java.lang.Boolean defaultValue,
java.util.function.Predicate<? super java.lang.Boolean> filter)
Creates a boolean binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.BooleanBinding |
filterThenFindFirstBoolean(javafx.collections.ObservableMap<K,java.lang.Boolean> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Boolean>> filter)
Creates a boolean binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.BooleanBinding |
filterThenFindFirstBoolean(javafx.collections.ObservableMap<K,java.lang.Boolean> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
java.util.function.Predicate<? super java.lang.Boolean> filter)
Creates a boolean binding with the first value of an observable map after filtering.
|
static javafx.beans.binding.BooleanBinding |
filterThenFindFirstBoolean(javafx.collections.ObservableSet<java.lang.Boolean> items,
java.lang.Boolean defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Boolean>> filter)
Creates a boolean binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.BooleanBinding |
filterThenFindFirstBoolean(javafx.collections.ObservableSet<java.lang.Boolean> items,
java.lang.Boolean defaultValue,
java.util.function.Predicate<? super java.lang.Boolean> filter)
Creates a boolean binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.BooleanBinding |
filterThenFindFirstBoolean(javafx.collections.ObservableSet<java.lang.Boolean> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Boolean>> filter)
Creates a boolean binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.BooleanBinding |
filterThenFindFirstBoolean(javafx.collections.ObservableSet<java.lang.Boolean> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
java.util.function.Predicate<? super java.lang.Boolean> filter)
Creates a boolean binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.DoubleBinding |
filterThenFindFirstDouble(javafx.collections.ObservableList<java.lang.Double> items,
java.lang.Double defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Double>> filter)
Creates a double binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.DoubleBinding |
filterThenFindFirstDouble(javafx.collections.ObservableList<java.lang.Double> items,
java.lang.Double defaultValue,
java.util.function.Predicate<? super java.lang.Double> filter)
Creates a double binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.DoubleBinding |
filterThenFindFirstDouble(javafx.collections.ObservableList<java.lang.Double> items,
java.util.function.Supplier<java.lang.Double> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Double>> filter)
Creates a double binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.DoubleBinding |
filterThenFindFirstDouble(javafx.collections.ObservableList<java.lang.Double> items,
java.util.function.Supplier<java.lang.Double> supplier,
java.util.function.Predicate<? super java.lang.Double> filter)
Creates a double binding with the first element of an observable list after filtering.
|
static <K> javafx.beans.binding.DoubleBinding |
filterThenFindFirstDouble(javafx.collections.ObservableMap<K,java.lang.Double> items,
java.lang.Double defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Double>> filter)
Creates a double binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.DoubleBinding |
filterThenFindFirstDouble(javafx.collections.ObservableMap<K,java.lang.Double> items,
java.lang.Double defaultValue,
java.util.function.Predicate<? super java.lang.Double> filter)
Creates a double binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.DoubleBinding |
filterThenFindFirstDouble(javafx.collections.ObservableMap<K,java.lang.Double> items,
java.util.function.Supplier<java.lang.Double> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Double>> filter)
Creates a double binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.DoubleBinding |
filterThenFindFirstDouble(javafx.collections.ObservableMap<K,java.lang.Double> items,
java.util.function.Supplier<java.lang.Double> supplier,
java.util.function.Predicate<? super java.lang.Double> filter)
Creates a double binding with the first value of an observable map after filtering.
|
static javafx.beans.binding.DoubleBinding |
filterThenFindFirstDouble(javafx.collections.ObservableSet<java.lang.Double> items,
java.lang.Double defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Double>> filter)
Creates a double binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.DoubleBinding |
filterThenFindFirstDouble(javafx.collections.ObservableSet<java.lang.Double> items,
java.lang.Double defaultValue,
java.util.function.Predicate<? super java.lang.Double> filter)
Creates a double binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.DoubleBinding |
filterThenFindFirstDouble(javafx.collections.ObservableSet<java.lang.Double> items,
java.util.function.Supplier<java.lang.Double> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Double>> filter)
Creates a double binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.DoubleBinding |
filterThenFindFirstDouble(javafx.collections.ObservableSet<java.lang.Double> items,
java.util.function.Supplier<java.lang.Double> supplier,
java.util.function.Predicate<? super java.lang.Double> filter)
Creates a double binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.FloatBinding |
filterThenFindFirstFloat(javafx.collections.ObservableList<java.lang.Float> items,
java.lang.Float defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Float>> filter)
Creates a float binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.FloatBinding |
filterThenFindFirstFloat(javafx.collections.ObservableList<java.lang.Float> items,
java.lang.Float defaultValue,
java.util.function.Predicate<? super java.lang.Float> filter)
Creates a float binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.FloatBinding |
filterThenFindFirstFloat(javafx.collections.ObservableList<java.lang.Float> items,
java.util.function.Supplier<java.lang.Float> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Float>> filter)
Creates a float binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.FloatBinding |
filterThenFindFirstFloat(javafx.collections.ObservableList<java.lang.Float> items,
java.util.function.Supplier<java.lang.Float> supplier,
java.util.function.Predicate<? super java.lang.Float> filter)
Creates a float binding with the first element of an observable list after filtering.
|
static <K> javafx.beans.binding.FloatBinding |
filterThenFindFirstFloat(javafx.collections.ObservableMap<K,java.lang.Float> items,
java.lang.Float defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Float>> filter)
Creates a float binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.FloatBinding |
filterThenFindFirstFloat(javafx.collections.ObservableMap<K,java.lang.Float> items,
java.lang.Float defaultValue,
java.util.function.Predicate<? super java.lang.Float> filter)
Creates a float binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.FloatBinding |
filterThenFindFirstFloat(javafx.collections.ObservableMap<K,java.lang.Float> items,
java.util.function.Supplier<java.lang.Float> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Float>> filter)
Creates a float binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.FloatBinding |
filterThenFindFirstFloat(javafx.collections.ObservableMap<K,java.lang.Float> items,
java.util.function.Supplier<java.lang.Float> supplier,
java.util.function.Predicate<? super java.lang.Float> filter)
Creates a float binding with the first value of an observable map after filtering.
|
static javafx.beans.binding.FloatBinding |
filterThenFindFirstFloat(javafx.collections.ObservableSet<java.lang.Float> items,
java.lang.Float defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Float>> filter)
Creates a float binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.FloatBinding |
filterThenFindFirstFloat(javafx.collections.ObservableSet<java.lang.Float> items,
java.lang.Float defaultValue,
java.util.function.Predicate<? super java.lang.Float> filter)
Creates a float binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.FloatBinding |
filterThenFindFirstFloat(javafx.collections.ObservableSet<java.lang.Float> items,
java.util.function.Supplier<java.lang.Float> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Float>> filter)
Creates a float binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.FloatBinding |
filterThenFindFirstFloat(javafx.collections.ObservableSet<java.lang.Float> items,
java.util.function.Supplier<java.lang.Float> supplier,
java.util.function.Predicate<? super java.lang.Float> filter)
Creates a float binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.IntegerBinding |
filterThenFindFirstInteger(javafx.collections.ObservableList<java.lang.Integer> items,
java.lang.Integer defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Integer>> filter)
Creates an integer binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.IntegerBinding |
filterThenFindFirstInteger(javafx.collections.ObservableList<java.lang.Integer> items,
java.lang.Integer defaultValue,
java.util.function.Predicate<? super java.lang.Integer> filter)
Creates an integer binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.IntegerBinding |
filterThenFindFirstInteger(javafx.collections.ObservableList<java.lang.Integer> items,
java.util.function.Supplier<java.lang.Integer> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Integer>> filter)
Creates an integer binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.IntegerBinding |
filterThenFindFirstInteger(javafx.collections.ObservableList<java.lang.Integer> items,
java.util.function.Supplier<java.lang.Integer> supplier,
java.util.function.Predicate<? super java.lang.Integer> filter)
Creates an integer binding with the first element of an observable list after filtering.
|
static <K> javafx.beans.binding.IntegerBinding |
filterThenFindFirstInteger(javafx.collections.ObservableMap<K,java.lang.Integer> items,
java.lang.Integer defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Integer>> filter)
Creates an integer binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.IntegerBinding |
filterThenFindFirstInteger(javafx.collections.ObservableMap<K,java.lang.Integer> items,
java.lang.Integer defaultValue,
java.util.function.Predicate<? super java.lang.Integer> filter)
Creates an integer binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.IntegerBinding |
filterThenFindFirstInteger(javafx.collections.ObservableMap<K,java.lang.Integer> items,
java.util.function.Supplier<java.lang.Integer> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Integer>> filter)
Creates an integer binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.IntegerBinding |
filterThenFindFirstInteger(javafx.collections.ObservableMap<K,java.lang.Integer> items,
java.util.function.Supplier<java.lang.Integer> supplier,
java.util.function.Predicate<? super java.lang.Integer> filter)
Creates an integer binding with the first value of an observable map after filtering.
|
static javafx.beans.binding.IntegerBinding |
filterThenFindFirstInteger(javafx.collections.ObservableSet<java.lang.Integer> items,
java.lang.Integer defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Integer>> filter)
Creates an integer binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.IntegerBinding |
filterThenFindFirstInteger(javafx.collections.ObservableSet<java.lang.Integer> items,
java.lang.Integer defaultValue,
java.util.function.Predicate<? super java.lang.Integer> filter)
Creates an integer binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.IntegerBinding |
filterThenFindFirstInteger(javafx.collections.ObservableSet<java.lang.Integer> items,
java.util.function.Supplier<java.lang.Integer> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Integer>> filter)
Creates an integer binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.IntegerBinding |
filterThenFindFirstInteger(javafx.collections.ObservableSet<java.lang.Integer> items,
java.util.function.Supplier<java.lang.Integer> supplier,
java.util.function.Predicate<? super java.lang.Integer> filter)
Creates an integer binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.LongBinding |
filterThenFindFirstLong(javafx.collections.ObservableList<java.lang.Long> items,
java.lang.Long defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Long>> filter)
Creates a long binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.LongBinding |
filterThenFindFirstLong(javafx.collections.ObservableList<java.lang.Long> items,
java.lang.Long defaultValue,
java.util.function.Predicate<? super java.lang.Long> filter)
Creates a long binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.LongBinding |
filterThenFindFirstLong(javafx.collections.ObservableList<java.lang.Long> items,
java.util.function.Supplier<java.lang.Long> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Long>> filter)
Creates a long binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.LongBinding |
filterThenFindFirstLong(javafx.collections.ObservableList<java.lang.Long> items,
java.util.function.Supplier<java.lang.Long> supplier,
java.util.function.Predicate<? super java.lang.Long> filter)
Creates a long binding with the first element of an observable list after filtering.
|
static <K> javafx.beans.binding.LongBinding |
filterThenFindFirstLong(javafx.collections.ObservableMap<K,java.lang.Long> items,
java.lang.Long defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Long>> filter)
Creates a long binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.LongBinding |
filterThenFindFirstLong(javafx.collections.ObservableMap<K,java.lang.Long> items,
java.lang.Long defaultValue,
java.util.function.Predicate<? super java.lang.Long> filter)
Creates a long binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.LongBinding |
filterThenFindFirstLong(javafx.collections.ObservableMap<K,java.lang.Long> items,
java.util.function.Supplier<java.lang.Long> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Long>> filter)
Creates a long binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.LongBinding |
filterThenFindFirstLong(javafx.collections.ObservableMap<K,java.lang.Long> items,
java.util.function.Supplier<java.lang.Long> supplier,
java.util.function.Predicate<? super java.lang.Long> filter)
Creates a long binding with the first value of an observable map after filtering.
|
static javafx.beans.binding.LongBinding |
filterThenFindFirstLong(javafx.collections.ObservableSet<java.lang.Long> items,
java.lang.Long defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Long>> filter)
Creates a long binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.LongBinding |
filterThenFindFirstLong(javafx.collections.ObservableSet<java.lang.Long> items,
java.lang.Long defaultValue,
java.util.function.Predicate<? super java.lang.Long> filter)
Creates a long binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.LongBinding |
filterThenFindFirstLong(javafx.collections.ObservableSet<java.lang.Long> items,
java.util.function.Supplier<java.lang.Long> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Long>> filter)
Creates a long binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.LongBinding |
filterThenFindFirstLong(javafx.collections.ObservableSet<java.lang.Long> items,
java.util.function.Supplier<java.lang.Long> supplier,
java.util.function.Predicate<? super java.lang.Long> filter)
Creates a long binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.StringBinding |
filterThenFindFirstString(javafx.collections.ObservableList<java.lang.String> items,
java.lang.String defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.String>> filter)
Creates a string binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.StringBinding |
filterThenFindFirstString(javafx.collections.ObservableList<java.lang.String> items,
java.lang.String defaultValue,
java.util.function.Predicate<? super java.lang.String> filter)
Creates a string binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.StringBinding |
filterThenFindFirstString(javafx.collections.ObservableList<java.lang.String> items,
java.util.function.Supplier<java.lang.String> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.String>> filter)
Creates a string binding with the first element of an observable list after filtering.
|
static javafx.beans.binding.StringBinding |
filterThenFindFirstString(javafx.collections.ObservableList<java.lang.String> items,
java.util.function.Supplier<java.lang.String> supplier,
java.util.function.Predicate<? super java.lang.String> filter)
Creates a string binding with the first element of an observable list after filtering.
|
static <K> javafx.beans.binding.StringBinding |
filterThenFindFirstString(javafx.collections.ObservableMap<K,java.lang.String> items,
java.lang.String defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.String>> filter)
Creates a string binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.StringBinding |
filterThenFindFirstString(javafx.collections.ObservableMap<K,java.lang.String> items,
java.lang.String defaultValue,
java.util.function.Predicate<? super java.lang.String> filter)
Creates a string binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.StringBinding |
filterThenFindFirstString(javafx.collections.ObservableMap<K,java.lang.String> items,
java.util.function.Supplier<java.lang.String> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.String>> filter)
Creates a string binding with the first value of an observable map after filtering.
|
static <K> javafx.beans.binding.StringBinding |
filterThenFindFirstString(javafx.collections.ObservableMap<K,java.lang.String> items,
java.util.function.Supplier<java.lang.String> supplier,
java.util.function.Predicate<? super java.lang.String> filter)
Creates a string binding with the first value of an observable map after filtering.
|
static javafx.beans.binding.StringBinding |
filterThenFindFirstString(javafx.collections.ObservableSet<java.lang.String> items,
java.lang.String defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.String>> filter)
Creates a string binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.StringBinding |
filterThenFindFirstString(javafx.collections.ObservableSet<java.lang.String> items,
java.lang.String defaultValue,
java.util.function.Predicate<? super java.lang.String> filter)
Creates a string binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.StringBinding |
filterThenFindFirstString(javafx.collections.ObservableSet<java.lang.String> items,
java.util.function.Supplier<java.lang.String> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.String>> filter)
Creates a string binding with the first element of an observable set after filtering.
|
static javafx.beans.binding.StringBinding |
filterThenFindFirstString(javafx.collections.ObservableSet<java.lang.String> items,
java.util.function.Supplier<java.lang.String> supplier,
java.util.function.Predicate<? super java.lang.String> filter)
Creates a string binding with the first element of an observable set after filtering.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
filterThenMapThenFindFirst(javafx.collections.ObservableList<T> items,
R defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper)
Creates an object binding with the first element of an observable list after filtering and mapping.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
filterThenMapThenFindFirst(javafx.collections.ObservableList<T> items,
R defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,R> mapper)
Creates an object binding with the first element of an observable list after filtering and mapping.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
filterThenMapThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<R> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper)
Creates an object binding with the first element of an observable list after filtering and mapping.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
filterThenMapThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<R> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,R> mapper)
Creates an object binding with the first element of an observable list after filtering and mapping.
|
static <K,V,R> javafx.beans.binding.ObjectBinding<R> |
filterThenMapThenFindFirst(javafx.collections.ObservableMap<K,V> items,
R defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,R>> mapper)
Creates an object binding with the first value of an observable map after filtering and mapping.
|
static <K,V,R> javafx.beans.binding.ObjectBinding<R> |
filterThenMapThenFindFirst(javafx.collections.ObservableMap<K,V> items,
R defaultValue,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,R> mapper)
Creates an object binding with the first value of an observable map after filtering and mapping.
|
static <K,V,R> javafx.beans.binding.ObjectBinding<R> |
filterThenMapThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<R> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,R>> mapper)
Creates an object binding with the first value of an observable map after filtering and mapping.
|
static <K,V,R> javafx.beans.binding.ObjectBinding<R> |
filterThenMapThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<R> supplier,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,R> mapper)
Creates an object binding with the first value of an observable map after filtering and mapping.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
filterThenMapThenFindFirst(javafx.collections.ObservableSet<T> items,
R defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper)
Creates an object binding with the first element of an observable set after filtering and mapping.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
filterThenMapThenFindFirst(javafx.collections.ObservableSet<T> items,
R defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,R> mapper)
Creates an object binding with the first element of an observable set after filtering and mapping.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
filterThenMapThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<R> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper)
Creates an object binding with the first element of an observable set after filtering and mapping.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
filterThenMapThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<R> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,R> mapper)
Creates an object binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.BooleanBinding |
filterThenMapToBooleanThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Boolean defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper)
Creates a boolean binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.BooleanBinding |
filterThenMapToBooleanThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Boolean defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Boolean> mapper)
Creates a boolean binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.BooleanBinding |
filterThenMapToBooleanThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper)
Creates a boolean binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.BooleanBinding |
filterThenMapToBooleanThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Boolean> mapper)
Creates a boolean binding with the first element of an observable list after filtering and mapping.
|
static <K,V> javafx.beans.binding.BooleanBinding |
filterThenMapToBooleanThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Boolean defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Boolean>> mapper)
Creates a boolean binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.BooleanBinding |
filterThenMapToBooleanThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Boolean defaultValue,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,java.lang.Boolean> mapper)
Creates a boolean binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.BooleanBinding |
filterThenMapToBooleanThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Boolean>> mapper)
Creates a boolean binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.BooleanBinding |
filterThenMapToBooleanThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,java.lang.Boolean> mapper)
Creates a boolean binding with the first value of an observable map after filtering and mapping.
|
static <T> javafx.beans.binding.BooleanBinding |
filterThenMapToBooleanThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Boolean defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper)
Creates a boolean binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.BooleanBinding |
filterThenMapToBooleanThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Boolean defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Boolean> mapper)
Creates a boolean binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.BooleanBinding |
filterThenMapToBooleanThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper)
Creates a boolean binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.BooleanBinding |
filterThenMapToBooleanThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Boolean> mapper)
Creates a boolean binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.DoubleBinding |
filterThenMapToDoubleThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Double defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper)
Creates a double binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.DoubleBinding |
filterThenMapToDoubleThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Double defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Double> mapper)
Creates a double binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.DoubleBinding |
filterThenMapToDoubleThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Double> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper)
Creates a double binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.DoubleBinding |
filterThenMapToDoubleThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Double> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Double> mapper)
Creates a double binding with the first element of an observable list after filtering and mapping.
|
static <K,V> javafx.beans.binding.DoubleBinding |
filterThenMapToDoubleThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Double defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Double>> mapper)
Creates a double binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.DoubleBinding |
filterThenMapToDoubleThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Double defaultValue,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,java.lang.Double> mapper)
Creates a double binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.DoubleBinding |
filterThenMapToDoubleThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Double> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Double>> mapper)
Creates a double binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.DoubleBinding |
filterThenMapToDoubleThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Double> supplier,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,java.lang.Double> mapper)
Creates a double binding with the first value of an observable map after filtering and mapping.
|
static <T> javafx.beans.binding.DoubleBinding |
filterThenMapToDoubleThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Double defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper)
Creates a double binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.DoubleBinding |
filterThenMapToDoubleThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Double defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Double> mapper)
Creates a double binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.DoubleBinding |
filterThenMapToDoubleThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Double> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper)
Creates a double binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.DoubleBinding |
filterThenMapToDoubleThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Double> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Double> mapper)
Creates a double binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.FloatBinding |
filterThenMapToFloatThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Float defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper)
Creates a float binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.FloatBinding |
filterThenMapToFloatThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Float defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Float> mapper)
Creates a float binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.FloatBinding |
filterThenMapToFloatThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Float> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper)
Creates a float binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.FloatBinding |
filterThenMapToFloatThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Float> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Float> mapper)
Creates a float binding with the first element of an observable list after filtering and mapping.
|
static <K,V> javafx.beans.binding.FloatBinding |
filterThenMapToFloatThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Float defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Float>> mapper)
Creates a float binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.FloatBinding |
filterThenMapToFloatThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Float defaultValue,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,java.lang.Float> mapper)
Creates a float binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.FloatBinding |
filterThenMapToFloatThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Float> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Float>> mapper)
Creates a float binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.FloatBinding |
filterThenMapToFloatThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Float> supplier,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,java.lang.Float> mapper)
Creates a float binding with the first value of an observable map after filtering and mapping.
|
static <T> javafx.beans.binding.FloatBinding |
filterThenMapToFloatThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Float defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper)
Creates a float binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.FloatBinding |
filterThenMapToFloatThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Float defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Float> mapper)
Creates a float binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.FloatBinding |
filterThenMapToFloatThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Float> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper)
Creates a float binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.FloatBinding |
filterThenMapToFloatThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Float> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Float> mapper)
Creates a float binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.IntegerBinding |
filterThenMapToIntegerThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Integer defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper)
Creates an integer binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.IntegerBinding |
filterThenMapToIntegerThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Integer defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Integer> mapper)
Creates an integer binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.IntegerBinding |
filterThenMapToIntegerThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Integer> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper)
Creates an integer binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.IntegerBinding |
filterThenMapToIntegerThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Integer> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Integer> mapper)
Creates an integer binding with the first element of an observable list after filtering and mapping.
|
static <K,V> javafx.beans.binding.IntegerBinding |
filterThenMapToIntegerThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Integer defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Integer>> mapper)
Creates an integer binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.IntegerBinding |
filterThenMapToIntegerThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Integer defaultValue,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,java.lang.Integer> mapper)
Creates an integer binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.IntegerBinding |
filterThenMapToIntegerThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Integer> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Integer>> mapper)
Creates an integer binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.IntegerBinding |
filterThenMapToIntegerThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Integer> supplier,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,java.lang.Integer> mapper)
Creates an integer binding with the first value of an observable map after filtering and mapping.
|
static <T> javafx.beans.binding.IntegerBinding |
filterThenMapToIntegerThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Integer defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper)
Creates an integer binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.IntegerBinding |
filterThenMapToIntegerThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Integer defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Integer> mapper)
Creates an integer binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.IntegerBinding |
filterThenMapToIntegerThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Integer> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper)
Creates an integer binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.IntegerBinding |
filterThenMapToIntegerThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Integer> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Integer> mapper)
Creates an integer binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.LongBinding |
filterThenMapToLongThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Long defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper)
Creates a long binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.LongBinding |
filterThenMapToLongThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Long defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Long> mapper)
Creates a long binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.LongBinding |
filterThenMapToLongThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Long> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper)
Creates a long binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.LongBinding |
filterThenMapToLongThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Long> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Long> mapper)
Creates a long binding with the first element of an observable list after filtering and mapping.
|
static <K,V> javafx.beans.binding.LongBinding |
filterThenMapToLongThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Long defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Long>> mapper)
Creates a long binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.LongBinding |
filterThenMapToLongThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Long defaultValue,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,java.lang.Long> mapper)
Creates a long binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.LongBinding |
filterThenMapToLongThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Long> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Long>> mapper)
Creates a long binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.LongBinding |
filterThenMapToLongThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Long> supplier,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,java.lang.Long> mapper)
Creates a long binding with the first value of an observable map after filtering and mapping.
|
static <T> javafx.beans.binding.LongBinding |
filterThenMapToLongThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Long defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper)
Creates a long binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.LongBinding |
filterThenMapToLongThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Long defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Long> mapper)
Creates a long binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.LongBinding |
filterThenMapToLongThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Long> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper)
Creates a long binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.LongBinding |
filterThenMapToLongThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Long> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.Long> mapper)
Creates a long binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.StringBinding |
filterThenMapToStringThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.String defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper)
Creates a string binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.StringBinding |
filterThenMapToStringThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.String defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.String> mapper)
Creates a string binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.StringBinding |
filterThenMapToStringThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.String> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper)
Creates a string binding with the first element of an observable list after filtering and mapping.
|
static <T> javafx.beans.binding.StringBinding |
filterThenMapToStringThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.String> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.String> mapper)
Creates a string binding with the first element of an observable list after filtering and mapping.
|
static <K,V> javafx.beans.binding.StringBinding |
filterThenMapToStringThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.String defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.String>> mapper)
Creates a string binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.StringBinding |
filterThenMapToStringThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.String defaultValue,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,java.lang.String> mapper)
Creates a string binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.StringBinding |
filterThenMapToStringThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.String> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.String>> mapper)
Creates a string binding with the first value of an observable map after filtering and mapping.
|
static <K,V> javafx.beans.binding.StringBinding |
filterThenMapToStringThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.String> supplier,
java.util.function.Predicate<? super V> filter,
java.util.function.Function<? super V,java.lang.String> mapper)
Creates a string binding with the first value of an observable map after filtering and mapping.
|
static <T> javafx.beans.binding.StringBinding |
filterThenMapToStringThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.String defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper)
Creates a string binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.StringBinding |
filterThenMapToStringThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.String defaultValue,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.String> mapper)
Creates a string binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.StringBinding |
filterThenMapToStringThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.String> supplier,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper)
Creates a string binding with the first element of an observable set after filtering and mapping.
|
static <T> javafx.beans.binding.StringBinding |
filterThenMapToStringThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.String> supplier,
java.util.function.Predicate<? super T> filter,
java.util.function.Function<? super T,java.lang.String> mapper)
Creates a string binding with the first element of an observable set after filtering and mapping.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
mapThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
R defaultValue,
java.util.function.Function<? super T,R> mapper,
java.util.function.Predicate<? super R> filter)
Creates an object binding with the first element of an observable list after mapping and filtering.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
mapThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
R defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super R>> filter)
Creates an object binding with the first element of an observable list after mapping and filtering.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
mapThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<R> supplier,
java.util.function.Function<? super T,R> mapper,
java.util.function.Predicate<? super R> filter)
Creates an object binding with the first element of an observable list after mapping and filtering.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
mapThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<R> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super R>> filter)
Creates an object binding with the first element of an observable list after mapping and filtering.
|
static <K,V,R> javafx.beans.binding.ObjectBinding<R> |
mapThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
R defaultValue,
java.util.function.Function<? super V,R> mapper,
java.util.function.Predicate<? super R> filter)
Creates an object binding with the first value of an observable map after mapping and filtering.
|
static <K,V,R> javafx.beans.binding.ObjectBinding<R> |
mapThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
R defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,R>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super R>> filter)
Creates an object binding with the first value of an observable map after mapping and filtering.
|
static <K,V,R> javafx.beans.binding.ObjectBinding<R> |
mapThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<R> supplier,
java.util.function.Function<? super V,R> mapper,
java.util.function.Predicate<? super R> filter)
Creates an object binding with the first value of an observable map after mapping and filtering.
|
static <K,V,R> javafx.beans.binding.ObjectBinding<R> |
mapThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<R> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,R>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super R>> filter)
Creates an object binding with the first value of an observable map after mapping and filtering.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
mapThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
R defaultValue,
java.util.function.Function<? super T,R> mapper,
java.util.function.Predicate<? super R> filter)
Creates an object binding with the first element of an observable set after mapping and filtering.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
mapThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
R defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super R>> filter)
Creates an object binding with the first element of an observable set after mapping and filtering.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
mapThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<R> supplier,
java.util.function.Function<? super T,R> mapper,
java.util.function.Predicate<? super R> filter)
Creates an object binding with the first element of an observable set after mapping and filtering.
|
static <T,R> javafx.beans.binding.ObjectBinding<R> |
mapThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<R> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<? super R>> filter)
Creates an object binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.BooleanBinding |
mapToBooleanThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Boolean defaultValue,
java.util.function.Function<? super T,java.lang.Boolean> mapper,
java.util.function.Predicate<java.lang.Boolean> filter)
Creates a boolean binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.BooleanBinding |
mapToBooleanThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Boolean defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Boolean>> filter)
Creates a boolean binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.BooleanBinding |
mapToBooleanThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
java.util.function.Function<? super T,java.lang.Boolean> mapper,
java.util.function.Predicate<java.lang.Boolean> filter)
Creates a boolean binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.BooleanBinding |
mapToBooleanThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Boolean>> filter)
Creates a boolean binding with the first element of an observable list after mapping and filtering.
|
static <K,V> javafx.beans.binding.BooleanBinding |
mapToBooleanThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Boolean defaultValue,
java.util.function.Function<? super V,java.lang.Boolean> mapper,
java.util.function.Predicate<java.lang.Boolean> filter)
Creates a boolean binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.BooleanBinding |
mapToBooleanThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Boolean defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Boolean>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Boolean>> filter)
Creates a boolean binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.BooleanBinding |
mapToBooleanThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
java.util.function.Function<? super V,java.lang.Boolean> mapper,
java.util.function.Predicate<java.lang.Boolean> filter)
Creates a boolean binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.BooleanBinding |
mapToBooleanThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Boolean>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Boolean>> filter)
Creates a boolean binding with the first value of an observable map after mapping and filtering.
|
static <T> javafx.beans.binding.BooleanBinding |
mapToBooleanThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Boolean defaultValue,
java.util.function.Function<? super T,java.lang.Boolean> mapper,
java.util.function.Predicate<java.lang.Boolean> filter)
Creates a boolean binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.BooleanBinding |
mapToBooleanThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Boolean defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Boolean>> filter)
Creates a boolean binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.BooleanBinding |
mapToBooleanThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
java.util.function.Function<? super T,java.lang.Boolean> mapper,
java.util.function.Predicate<java.lang.Boolean> filter)
Creates a boolean binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.BooleanBinding |
mapToBooleanThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Boolean> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Boolean>> filter)
Creates a boolean binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.DoubleBinding |
mapToDoubleThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Double defaultValue,
java.util.function.Function<? super T,java.lang.Double> mapper,
java.util.function.Predicate<java.lang.Double> filter)
Creates a double binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.DoubleBinding |
mapToDoubleThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Double defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Double>> filter)
Creates a double binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.DoubleBinding |
mapToDoubleThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Double> supplier,
java.util.function.Function<? super T,java.lang.Double> mapper,
java.util.function.Predicate<java.lang.Double> filter)
Creates a double binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.DoubleBinding |
mapToDoubleThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Double> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Double>> filter)
Creates a double binding with the first element of an observable list after mapping and filtering.
|
static <K,V> javafx.beans.binding.DoubleBinding |
mapToDoubleThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Double defaultValue,
java.util.function.Function<? super V,java.lang.Double> mapper,
java.util.function.Predicate<java.lang.Double> filter)
Creates a double binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.DoubleBinding |
mapToDoubleThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Double defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Double>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Double>> filter)
Creates a double binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.DoubleBinding |
mapToDoubleThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Double> supplier,
java.util.function.Function<? super V,java.lang.Double> mapper,
java.util.function.Predicate<java.lang.Double> filter)
Creates a double binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.DoubleBinding |
mapToDoubleThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Double> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Double>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Double>> filter)
Creates a double binding with the first value of an observable map after mapping and filtering.
|
static <T> javafx.beans.binding.DoubleBinding |
mapToDoubleThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Double defaultValue,
java.util.function.Function<? super T,java.lang.Double> mapper,
java.util.function.Predicate<java.lang.Double> filter)
Creates a double binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.DoubleBinding |
mapToDoubleThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Double defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Double>> filter)
Creates a double binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.DoubleBinding |
mapToDoubleThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Double> supplier,
java.util.function.Function<? super T,java.lang.Double> mapper,
java.util.function.Predicate<java.lang.Double> filter)
Creates a double binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.DoubleBinding |
mapToDoubleThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Double> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Double>> filter)
Creates a double binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.FloatBinding |
mapToFloatThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Float defaultValue,
java.util.function.Function<? super T,java.lang.Float> mapper,
java.util.function.Predicate<java.lang.Float> filter)
Creates a float binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.FloatBinding |
mapToFloatThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Float defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Float>> filter)
Creates a float binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.FloatBinding |
mapToFloatThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Float> supplier,
java.util.function.Function<? super T,java.lang.Float> mapper,
java.util.function.Predicate<java.lang.Float> filter)
Creates a float binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.FloatBinding |
mapToFloatThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Float> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Float>> filter)
Creates a float binding with the first element of an observable list after mapping and filtering.
|
static <K,V> javafx.beans.binding.FloatBinding |
mapToFloatThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Float defaultValue,
java.util.function.Function<? super V,java.lang.Float> mapper,
java.util.function.Predicate<java.lang.Float> filter)
Creates a float binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.FloatBinding |
mapToFloatThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Float defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Float>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Float>> filter)
Creates a float binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.FloatBinding |
mapToFloatThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Float> supplier,
java.util.function.Function<? super V,java.lang.Float> mapper,
java.util.function.Predicate<java.lang.Float> filter)
Creates a float binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.FloatBinding |
mapToFloatThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Float> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Float>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Float>> filter)
Creates a float binding with the first value of an observable map after mapping and filtering.
|
static <T> javafx.beans.binding.FloatBinding |
mapToFloatThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Float defaultValue,
java.util.function.Function<? super T,java.lang.Float> mapper,
java.util.function.Predicate<java.lang.Float> filter)
Creates a float binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.FloatBinding |
mapToFloatThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Float defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Float>> filter)
Creates a float binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.FloatBinding |
mapToFloatThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Float> supplier,
java.util.function.Function<? super T,java.lang.Float> mapper,
java.util.function.Predicate<java.lang.Float> filter)
Creates a float binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.FloatBinding |
mapToFloatThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Float> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Float>> filter)
Creates a float binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.IntegerBinding |
mapToIntegerThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Integer defaultValue,
java.util.function.Function<? super T,java.lang.Integer> mapper,
java.util.function.Predicate<java.lang.Integer> filter)
Creates an integer binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.IntegerBinding |
mapToIntegerThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Integer defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Integer>> filter)
Creates an integer binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.IntegerBinding |
mapToIntegerThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Integer> supplier,
java.util.function.Function<? super T,java.lang.Integer> mapper,
java.util.function.Predicate<java.lang.Integer> filter)
Creates an integer binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.IntegerBinding |
mapToIntegerThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Integer> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Integer>> filter)
Creates an integer binding with the first element of an observable list after mapping and filtering.
|
static <K,V> javafx.beans.binding.IntegerBinding |
mapToIntegerThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Integer defaultValue,
java.util.function.Function<? super V,java.lang.Integer> mapper,
java.util.function.Predicate<java.lang.Integer> filter)
Creates an integer binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.IntegerBinding |
mapToIntegerThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Integer defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Integer>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Integer>> filter)
Creates an integer binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.IntegerBinding |
mapToIntegerThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Integer> supplier,
java.util.function.Function<? super V,java.lang.Integer> mapper,
java.util.function.Predicate<java.lang.Integer> filter)
Creates an integer binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.IntegerBinding |
mapToIntegerThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Integer> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Integer>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Integer>> filter)
Creates an integer binding with the first value of an observable map after mapping and filtering.
|
static <T> javafx.beans.binding.IntegerBinding |
mapToIntegerThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Integer defaultValue,
java.util.function.Function<? super T,java.lang.Integer> mapper,
java.util.function.Predicate<java.lang.Integer> filter)
Creates an integer binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.IntegerBinding |
mapToIntegerThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Integer defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Integer>> filter)
Creates an integer binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.IntegerBinding |
mapToIntegerThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Integer> supplier,
java.util.function.Function<? super T,java.lang.Integer> mapper,
java.util.function.Predicate<java.lang.Integer> filter)
Creates an integer binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.IntegerBinding |
mapToIntegerThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Integer> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Integer>> filter)
Creates an integer binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.LongBinding |
mapToLongThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Long defaultValue,
java.util.function.Function<? super T,java.lang.Long> mapper,
java.util.function.Predicate<java.lang.Long> filter)
Creates a long binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.LongBinding |
mapToLongThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.Long defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Long>> filter)
Creates a long binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.LongBinding |
mapToLongThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Long> supplier,
java.util.function.Function<? super T,java.lang.Long> mapper,
java.util.function.Predicate<java.lang.Long> filter)
Creates a long binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.LongBinding |
mapToLongThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.Long> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Long>> filter)
Creates a long binding with the first element of an observable list after mapping and filtering.
|
static <K,V> javafx.beans.binding.LongBinding |
mapToLongThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Long defaultValue,
java.util.function.Function<? super V,java.lang.Long> mapper,
java.util.function.Predicate<java.lang.Long> filter)
Creates a long binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.LongBinding |
mapToLongThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.Long defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Long>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Long>> filter)
Creates a long binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.LongBinding |
mapToLongThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Long> supplier,
java.util.function.Function<? super V,java.lang.Long> mapper,
java.util.function.Predicate<java.lang.Long> filter)
Creates a long binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.LongBinding |
mapToLongThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.Long> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Long>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Long>> filter)
Creates a long binding with the first value of an observable map after mapping and filtering.
|
static <T> javafx.beans.binding.LongBinding |
mapToLongThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Long defaultValue,
java.util.function.Function<? super T,java.lang.Long> mapper,
java.util.function.Predicate<java.lang.Long> filter)
Creates a long binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.LongBinding |
mapToLongThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.Long defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Long>> filter)
Creates a long binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.LongBinding |
mapToLongThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Long> supplier,
java.util.function.Function<? super T,java.lang.Long> mapper,
java.util.function.Predicate<java.lang.Long> filter)
Creates a long binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.LongBinding |
mapToLongThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.Long> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Long>> filter)
Creates a long binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.StringBinding |
mapToStringThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.String defaultValue,
java.util.function.Function<? super T,java.lang.String> mapper,
java.util.function.Predicate<java.lang.String> filter)
Creates a string binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.StringBinding |
mapToStringThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.lang.String defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.String>> filter)
Creates a string binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.StringBinding |
mapToStringThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.String> supplier,
java.util.function.Function<? super T,java.lang.String> mapper,
java.util.function.Predicate<java.lang.String> filter)
Creates a string binding with the first element of an observable list after mapping and filtering.
|
static <T> javafx.beans.binding.StringBinding |
mapToStringThenFilterThenFindFirst(javafx.collections.ObservableList<T> items,
java.util.function.Supplier<java.lang.String> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.String>> filter)
Creates a string binding with the first element of an observable list after mapping and filtering.
|
static <K,V> javafx.beans.binding.StringBinding |
mapToStringThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.String defaultValue,
java.util.function.Function<? super V,java.lang.String> mapper,
java.util.function.Predicate<java.lang.String> filter)
Creates a string binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.StringBinding |
mapToStringThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.lang.String defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.String>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.String>> filter)
Creates a string binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.StringBinding |
mapToStringThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.String> supplier,
java.util.function.Function<? super V,java.lang.String> mapper,
java.util.function.Predicate<java.lang.String> filter)
Creates a string binding with the first value of an observable map after mapping and filtering.
|
static <K,V> javafx.beans.binding.StringBinding |
mapToStringThenFilterThenFindFirst(javafx.collections.ObservableMap<K,V> items,
java.util.function.Supplier<java.lang.String> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.String>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.String>> filter)
Creates a string binding with the first value of an observable map after mapping and filtering.
|
static <T> javafx.beans.binding.StringBinding |
mapToStringThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.String defaultValue,
java.util.function.Function<? super T,java.lang.String> mapper,
java.util.function.Predicate<java.lang.String> filter)
Creates a string binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.StringBinding |
mapToStringThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.lang.String defaultValue,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.String>> filter)
Creates a string binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.StringBinding |
mapToStringThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.String> supplier,
java.util.function.Function<? super T,java.lang.String> mapper,
java.util.function.Predicate<java.lang.String> filter)
Creates a string binding with the first element of an observable set after mapping and filtering.
|
static <T> javafx.beans.binding.StringBinding |
mapToStringThenFilterThenFindFirst(javafx.collections.ObservableSet<T> items,
java.util.function.Supplier<java.lang.String> supplier,
javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper,
javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.String>> filter)
Creates a string binding with the first element of an observable set after mapping and filtering.
|
@Nonnull public static <T> javafx.beans.binding.ObjectBinding<T> filterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull T defaultValue, @Nonnull java.util.function.Predicate<? super T> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static <T> javafx.beans.binding.ObjectBinding<T> filterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<T> supplier, @Nonnull java.util.function.Predicate<? super T> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static <T> javafx.beans.binding.ObjectBinding<T> filterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull T defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static <T> javafx.beans.binding.ObjectBinding<T> filterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<T> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.BooleanBinding filterThenFindFirstBoolean(@Nonnull javafx.collections.ObservableList<java.lang.Boolean> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Boolean> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.BooleanBinding filterThenFindFirstBoolean(@Nonnull javafx.collections.ObservableList<java.lang.Boolean> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Boolean> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.BooleanBinding filterThenFindFirstBoolean(@Nonnull javafx.collections.ObservableList<java.lang.Boolean> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Boolean>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.BooleanBinding filterThenFindFirstBoolean(@Nonnull javafx.collections.ObservableList<java.lang.Boolean> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Boolean>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.IntegerBinding filterThenFindFirstInteger(@Nonnull javafx.collections.ObservableList<java.lang.Integer> items, @Nonnull java.lang.Integer defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Integer> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.IntegerBinding filterThenFindFirstInteger(@Nonnull javafx.collections.ObservableList<java.lang.Integer> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Integer> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.IntegerBinding filterThenFindFirstInteger(@Nonnull javafx.collections.ObservableList<java.lang.Integer> items, @Nonnull java.lang.Integer defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Integer>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.IntegerBinding filterThenFindFirstInteger(@Nonnull javafx.collections.ObservableList<java.lang.Integer> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Integer>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.LongBinding filterThenFindFirstLong(@Nonnull javafx.collections.ObservableList<java.lang.Long> items, @Nonnull java.lang.Long defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Long> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.LongBinding filterThenFindFirstLong(@Nonnull javafx.collections.ObservableList<java.lang.Long> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Long> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.LongBinding filterThenFindFirstLong(@Nonnull javafx.collections.ObservableList<java.lang.Long> items, @Nonnull java.lang.Long defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Long>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.LongBinding filterThenFindFirstLong(@Nonnull javafx.collections.ObservableList<java.lang.Long> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Long>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.FloatBinding filterThenFindFirstFloat(@Nonnull javafx.collections.ObservableList<java.lang.Float> items, @Nonnull java.lang.Float defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Float> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.FloatBinding filterThenFindFirstFloat(@Nonnull javafx.collections.ObservableList<java.lang.Float> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Float> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.FloatBinding filterThenFindFirstFloat(@Nonnull javafx.collections.ObservableList<java.lang.Float> items, @Nonnull java.lang.Float defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Float>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.FloatBinding filterThenFindFirstFloat(@Nonnull javafx.collections.ObservableList<java.lang.Float> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Float>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.DoubleBinding filterThenFindFirstDouble(@Nonnull javafx.collections.ObservableList<java.lang.Double> items, @Nonnull java.lang.Double defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Double> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.DoubleBinding filterThenFindFirstDouble(@Nonnull javafx.collections.ObservableList<java.lang.Double> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Double> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.DoubleBinding filterThenFindFirstDouble(@Nonnull javafx.collections.ObservableList<java.lang.Double> items, @Nonnull java.lang.Double defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Double>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.DoubleBinding filterThenFindFirstDouble(@Nonnull javafx.collections.ObservableList<java.lang.Double> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Double>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.StringBinding filterThenFindFirstString(@Nonnull javafx.collections.ObservableList<java.lang.String> items, @Nonnull java.lang.String defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.String> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.StringBinding filterThenFindFirstString(@Nonnull javafx.collections.ObservableList<java.lang.String> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull java.util.function.Predicate<? super java.lang.String> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.StringBinding filterThenFindFirstString(@Nonnull javafx.collections.ObservableList<java.lang.String> items, @Nonnull java.lang.String defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.String>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.StringBinding filterThenFindFirstString(@Nonnull javafx.collections.ObservableList<java.lang.String> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.String>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static <T> javafx.beans.binding.ObjectBinding<T> filterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull T defaultValue, @Nonnull java.util.function.Predicate<? super T> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static <T> javafx.beans.binding.ObjectBinding<T> filterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<T> supplier, @Nonnull java.util.function.Predicate<? super T> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static <T> javafx.beans.binding.ObjectBinding<T> filterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull T defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static <T> javafx.beans.binding.ObjectBinding<T> filterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<T> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.BooleanBinding filterThenFindFirstBoolean(@Nonnull javafx.collections.ObservableSet<java.lang.Boolean> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Boolean> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.BooleanBinding filterThenFindFirstBoolean(@Nonnull javafx.collections.ObservableSet<java.lang.Boolean> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Boolean> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.BooleanBinding filterThenFindFirstBoolean(@Nonnull javafx.collections.ObservableSet<java.lang.Boolean> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Boolean>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.BooleanBinding filterThenFindFirstBoolean(@Nonnull javafx.collections.ObservableSet<java.lang.Boolean> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Boolean>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.IntegerBinding filterThenFindFirstInteger(@Nonnull javafx.collections.ObservableSet<java.lang.Integer> items, @Nonnull java.lang.Integer defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Integer> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.IntegerBinding filterThenFindFirstInteger(@Nonnull javafx.collections.ObservableSet<java.lang.Integer> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Integer> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.IntegerBinding filterThenFindFirstInteger(@Nonnull javafx.collections.ObservableSet<java.lang.Integer> items, @Nonnull java.lang.Integer defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Integer>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.IntegerBinding filterThenFindFirstInteger(@Nonnull javafx.collections.ObservableSet<java.lang.Integer> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Integer>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.LongBinding filterThenFindFirstLong(@Nonnull javafx.collections.ObservableSet<java.lang.Long> items, @Nonnull java.lang.Long defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Long> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.LongBinding filterThenFindFirstLong(@Nonnull javafx.collections.ObservableSet<java.lang.Long> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Long> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.LongBinding filterThenFindFirstLong(@Nonnull javafx.collections.ObservableSet<java.lang.Long> items, @Nonnull java.lang.Long defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Long>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.LongBinding filterThenFindFirstLong(@Nonnull javafx.collections.ObservableSet<java.lang.Long> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Long>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.FloatBinding filterThenFindFirstFloat(@Nonnull javafx.collections.ObservableSet<java.lang.Float> items, @Nonnull java.lang.Float defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Float> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.FloatBinding filterThenFindFirstFloat(@Nonnull javafx.collections.ObservableSet<java.lang.Float> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Float> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.FloatBinding filterThenFindFirstFloat(@Nonnull javafx.collections.ObservableSet<java.lang.Float> items, @Nonnull java.lang.Float defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Float>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.FloatBinding filterThenFindFirstFloat(@Nonnull javafx.collections.ObservableSet<java.lang.Float> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Float>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.DoubleBinding filterThenFindFirstDouble(@Nonnull javafx.collections.ObservableSet<java.lang.Double> items, @Nonnull java.lang.Double defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Double> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.DoubleBinding filterThenFindFirstDouble(@Nonnull javafx.collections.ObservableSet<java.lang.Double> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Double> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.DoubleBinding filterThenFindFirstDouble(@Nonnull javafx.collections.ObservableSet<java.lang.Double> items, @Nonnull java.lang.Double defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Double>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.DoubleBinding filterThenFindFirstDouble(@Nonnull javafx.collections.ObservableSet<java.lang.Double> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Double>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.StringBinding filterThenFindFirstString(@Nonnull javafx.collections.ObservableSet<java.lang.String> items, @Nonnull java.lang.String defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.String> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.StringBinding filterThenFindFirstString(@Nonnull javafx.collections.ObservableSet<java.lang.String> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull java.util.function.Predicate<? super java.lang.String> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.StringBinding filterThenFindFirstString(@Nonnull javafx.collections.ObservableSet<java.lang.String> items, @Nonnull java.lang.String defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.String>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static javafx.beans.binding.StringBinding filterThenFindFirstString(@Nonnull javafx.collections.ObservableSet<java.lang.String> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.String>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element.@Nonnull public static <K,V> javafx.beans.binding.ObjectBinding<V> filterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull V defaultValue, @Nonnull java.util.function.Predicate<? super V> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K,V> javafx.beans.binding.ObjectBinding<V> filterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<V> supplier, @Nonnull java.util.function.Predicate<? super V> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K,V> javafx.beans.binding.ObjectBinding<V> filterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull V defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K,V> javafx.beans.binding.ObjectBinding<V> filterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<V> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.BooleanBinding filterThenFindFirstBoolean(@Nonnull javafx.collections.ObservableMap<K,java.lang.Boolean> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Boolean> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.BooleanBinding filterThenFindFirstBoolean(@Nonnull javafx.collections.ObservableMap<K,java.lang.Boolean> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Boolean> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.BooleanBinding filterThenFindFirstBoolean(@Nonnull javafx.collections.ObservableMap<K,java.lang.Boolean> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Boolean>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.BooleanBinding filterThenFindFirstBoolean(@Nonnull javafx.collections.ObservableMap<K,java.lang.Boolean> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Boolean>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.IntegerBinding filterThenFindFirstInteger(@Nonnull javafx.collections.ObservableMap<K,java.lang.Integer> items, @Nonnull java.lang.Integer defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Integer> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.IntegerBinding filterThenFindFirstInteger(@Nonnull javafx.collections.ObservableMap<K,java.lang.Integer> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Integer> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.IntegerBinding filterThenFindFirstInteger(@Nonnull javafx.collections.ObservableMap<K,java.lang.Integer> items, @Nonnull java.lang.Integer defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Integer>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.IntegerBinding filterThenFindFirstInteger(@Nonnull javafx.collections.ObservableMap<K,java.lang.Integer> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Integer>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.LongBinding filterThenFindFirstLong(@Nonnull javafx.collections.ObservableMap<K,java.lang.Long> items, @Nonnull java.lang.Long defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Long> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.LongBinding filterThenFindFirstLong(@Nonnull javafx.collections.ObservableMap<K,java.lang.Long> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Long> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.LongBinding filterThenFindFirstLong(@Nonnull javafx.collections.ObservableMap<K,java.lang.Long> items, @Nonnull java.lang.Long defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Long>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.LongBinding filterThenFindFirstLong(@Nonnull javafx.collections.ObservableMap<K,java.lang.Long> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Long>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.FloatBinding filterThenFindFirstFloat(@Nonnull javafx.collections.ObservableMap<K,java.lang.Float> items, @Nonnull java.lang.Float defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Float> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.FloatBinding filterThenFindFirstFloat(@Nonnull javafx.collections.ObservableMap<K,java.lang.Float> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Float> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.FloatBinding filterThenFindFirstFloat(@Nonnull javafx.collections.ObservableMap<K,java.lang.Float> items, @Nonnull java.lang.Float defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Float>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.FloatBinding filterThenFindFirstFloat(@Nonnull javafx.collections.ObservableMap<K,java.lang.Float> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Float>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.DoubleBinding filterThenFindFirstDouble(@Nonnull javafx.collections.ObservableMap<K,java.lang.Double> items, @Nonnull java.lang.Double defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.Double> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.DoubleBinding filterThenFindFirstDouble(@Nonnull javafx.collections.ObservableMap<K,java.lang.Double> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull java.util.function.Predicate<? super java.lang.Double> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.DoubleBinding filterThenFindFirstDouble(@Nonnull javafx.collections.ObservableMap<K,java.lang.Double> items, @Nonnull java.lang.Double defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Double>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.DoubleBinding filterThenFindFirstDouble(@Nonnull javafx.collections.ObservableMap<K,java.lang.Double> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.Double>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.StringBinding filterThenFindFirstString(@Nonnull javafx.collections.ObservableMap<K,java.lang.String> items, @Nonnull java.lang.String defaultValue, @Nonnull java.util.function.Predicate<? super java.lang.String> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.StringBinding filterThenFindFirstString(@Nonnull javafx.collections.ObservableMap<K,java.lang.String> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull java.util.function.Predicate<? super java.lang.String> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.StringBinding filterThenFindFirstString(@Nonnull javafx.collections.ObservableMap<K,java.lang.String> items, @Nonnull java.lang.String defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.String>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <K> javafx.beans.binding.StringBinding filterThenFindFirstString(@Nonnull javafx.collections.ObservableMap<K,java.lang.String> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super java.lang.String>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> mapThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull R defaultValue, @Nonnull java.util.function.Function<? super T,R> mapper, @Nonnull java.util.function.Predicate<? super R> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> mapThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<R> supplier, @Nonnull java.util.function.Function<? super T,R> mapper, @Nonnull java.util.function.Predicate<? super R> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> mapThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull R defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super R>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> mapThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<R> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super R>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.BooleanBinding mapToBooleanThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull java.util.function.Function<? super T,java.lang.Boolean> mapper, @Nonnull java.util.function.Predicate<java.lang.Boolean> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.BooleanBinding mapToBooleanThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull java.util.function.Function<? super T,java.lang.Boolean> mapper, @Nonnull java.util.function.Predicate<java.lang.Boolean> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.BooleanBinding mapToBooleanThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Boolean>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.BooleanBinding mapToBooleanThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Boolean>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.IntegerBinding mapToIntegerThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Integer defaultValue, @Nonnull java.util.function.Function<? super T,java.lang.Integer> mapper, @Nonnull java.util.function.Predicate<java.lang.Integer> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.IntegerBinding mapToIntegerThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull java.util.function.Function<? super T,java.lang.Integer> mapper, @Nonnull java.util.function.Predicate<java.lang.Integer> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.IntegerBinding mapToIntegerThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Integer defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Integer>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.IntegerBinding mapToIntegerThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Integer>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.LongBinding mapToLongThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Long defaultValue, @Nonnull java.util.function.Function<? super T,java.lang.Long> mapper, @Nonnull java.util.function.Predicate<java.lang.Long> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.LongBinding mapToLongThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull java.util.function.Function<? super T,java.lang.Long> mapper, @Nonnull java.util.function.Predicate<java.lang.Long> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.LongBinding mapToLongThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Long defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Long>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.LongBinding mapToLongThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Long>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.FloatBinding mapToFloatThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Float defaultValue, @Nonnull java.util.function.Function<? super T,java.lang.Float> mapper, @Nonnull java.util.function.Predicate<java.lang.Float> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.FloatBinding mapToFloatThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull java.util.function.Function<? super T,java.lang.Float> mapper, @Nonnull java.util.function.Predicate<java.lang.Float> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.FloatBinding mapToFloatThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Float defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Float>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.FloatBinding mapToFloatThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Float>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.DoubleBinding mapToDoubleThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Double defaultValue, @Nonnull java.util.function.Function<? super T,java.lang.Double> mapper, @Nonnull java.util.function.Predicate<java.lang.Double> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.DoubleBinding mapToDoubleThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull java.util.function.Function<? super T,java.lang.Double> mapper, @Nonnull java.util.function.Predicate<java.lang.Double> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.DoubleBinding mapToDoubleThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Double defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Double>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.DoubleBinding mapToDoubleThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Double>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.StringBinding mapToStringThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.String defaultValue, @Nonnull java.util.function.Function<? super T,java.lang.String> mapper, @Nonnull java.util.function.Predicate<java.lang.String> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.StringBinding mapToStringThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull java.util.function.Function<? super T,java.lang.String> mapper, @Nonnull java.util.function.Predicate<java.lang.String> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.StringBinding mapToStringThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.String defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.String>> filter)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.StringBinding mapToStringThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.String>> filter)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> mapThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull R defaultValue, @Nonnull java.util.function.Function<? super T,R> mapper, @Nonnull java.util.function.Predicate<? super R> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> mapThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<R> supplier, @Nonnull java.util.function.Function<? super T,R> mapper, @Nonnull java.util.function.Predicate<? super R> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> mapThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull R defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super R>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> mapThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<R> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super R>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.BooleanBinding mapToBooleanThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull java.util.function.Function<? super T,java.lang.Boolean> mapper, @Nonnull java.util.function.Predicate<java.lang.Boolean> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.BooleanBinding mapToBooleanThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull java.util.function.Function<? super T,java.lang.Boolean> mapper, @Nonnull java.util.function.Predicate<java.lang.Boolean> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.BooleanBinding mapToBooleanThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Boolean>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.BooleanBinding mapToBooleanThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Boolean>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.IntegerBinding mapToIntegerThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Integer defaultValue, @Nonnull java.util.function.Function<? super T,java.lang.Integer> mapper, @Nonnull java.util.function.Predicate<java.lang.Integer> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.IntegerBinding mapToIntegerThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull java.util.function.Function<? super T,java.lang.Integer> mapper, @Nonnull java.util.function.Predicate<java.lang.Integer> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.IntegerBinding mapToIntegerThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Integer defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Integer>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.IntegerBinding mapToIntegerThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Integer>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.LongBinding mapToLongThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Long defaultValue, @Nonnull java.util.function.Function<? super T,java.lang.Long> mapper, @Nonnull java.util.function.Predicate<java.lang.Long> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.LongBinding mapToLongThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull java.util.function.Function<? super T,java.lang.Long> mapper, @Nonnull java.util.function.Predicate<java.lang.Long> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.LongBinding mapToLongThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Long defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Long>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.LongBinding mapToLongThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Long>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.FloatBinding mapToFloatThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Float defaultValue, @Nonnull java.util.function.Function<? super T,java.lang.Float> mapper, @Nonnull java.util.function.Predicate<java.lang.Float> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.FloatBinding mapToFloatThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull java.util.function.Function<? super T,java.lang.Float> mapper, @Nonnull java.util.function.Predicate<java.lang.Float> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.FloatBinding mapToFloatThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Float defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Float>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.FloatBinding mapToFloatThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Float>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.DoubleBinding mapToDoubleThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Double defaultValue, @Nonnull java.util.function.Function<? super T,java.lang.Double> mapper, @Nonnull java.util.function.Predicate<java.lang.Double> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.DoubleBinding mapToDoubleThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull java.util.function.Function<? super T,java.lang.Double> mapper, @Nonnull java.util.function.Predicate<java.lang.Double> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.DoubleBinding mapToDoubleThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Double defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Double>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.DoubleBinding mapToDoubleThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Double>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.StringBinding mapToStringThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.String defaultValue, @Nonnull java.util.function.Function<? super T,java.lang.String> mapper, @Nonnull java.util.function.Predicate<java.lang.String> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.StringBinding mapToStringThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull java.util.function.Function<? super T,java.lang.String> mapper, @Nonnull java.util.function.Predicate<java.lang.String> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.StringBinding mapToStringThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.String defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.String>> filter)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <T> javafx.beans.binding.StringBinding mapToStringThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.String>> filter)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each element before filtering.filter
- a non-interfering, stateless predicate to apply to the each element. after mapping.@Nonnull public static <K,V,R> javafx.beans.binding.ObjectBinding<R> mapThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull R defaultValue, @Nonnull java.util.function.Function<? super V,R> mapper, @Nonnull java.util.function.Predicate<? super R> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V,R> javafx.beans.binding.ObjectBinding<R> mapThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<R> supplier, @Nonnull java.util.function.Function<? super V,R> mapper, @Nonnull java.util.function.Predicate<? super R> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V,R> javafx.beans.binding.ObjectBinding<R> mapThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull R defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,R>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super R>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V,R> javafx.beans.binding.ObjectBinding<R> mapThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<R> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,R>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super R>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.BooleanBinding mapToBooleanThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull java.util.function.Function<? super V,java.lang.Boolean> mapper, @Nonnull java.util.function.Predicate<java.lang.Boolean> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.BooleanBinding mapToBooleanThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull java.util.function.Function<? super V,java.lang.Boolean> mapper, @Nonnull java.util.function.Predicate<java.lang.Boolean> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.BooleanBinding mapToBooleanThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Boolean>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Boolean>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.BooleanBinding mapToBooleanThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Boolean>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Boolean>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.IntegerBinding mapToIntegerThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Integer defaultValue, @Nonnull java.util.function.Function<? super V,java.lang.Integer> mapper, @Nonnull java.util.function.Predicate<java.lang.Integer> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.IntegerBinding mapToIntegerThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull java.util.function.Function<? super V,java.lang.Integer> mapper, @Nonnull java.util.function.Predicate<java.lang.Integer> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.IntegerBinding mapToIntegerThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Integer defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Integer>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Integer>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.IntegerBinding mapToIntegerThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Integer>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Integer>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.LongBinding mapToLongThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Long defaultValue, @Nonnull java.util.function.Function<? super V,java.lang.Long> mapper, @Nonnull java.util.function.Predicate<java.lang.Long> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.LongBinding mapToLongThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull java.util.function.Function<? super V,java.lang.Long> mapper, @Nonnull java.util.function.Predicate<java.lang.Long> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.LongBinding mapToLongThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Long defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Long>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Long>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.LongBinding mapToLongThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Long>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Long>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.FloatBinding mapToFloatThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Float defaultValue, @Nonnull java.util.function.Function<? super V,java.lang.Float> mapper, @Nonnull java.util.function.Predicate<java.lang.Float> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.FloatBinding mapToFloatThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull java.util.function.Function<? super V,java.lang.Float> mapper, @Nonnull java.util.function.Predicate<java.lang.Float> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.FloatBinding mapToFloatThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Float defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Float>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Float>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.FloatBinding mapToFloatThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Float>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Float>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.DoubleBinding mapToDoubleThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Double defaultValue, @Nonnull java.util.function.Function<? super V,java.lang.Double> mapper, @Nonnull java.util.function.Predicate<java.lang.Double> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.DoubleBinding mapToDoubleThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull java.util.function.Function<? super V,java.lang.Double> mapper, @Nonnull java.util.function.Predicate<java.lang.Double> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.DoubleBinding mapToDoubleThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Double defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Double>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Double>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.DoubleBinding mapToDoubleThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Double>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.Double>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.StringBinding mapToStringThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.String defaultValue, @Nonnull java.util.function.Function<? super V,java.lang.String> mapper, @Nonnull java.util.function.Predicate<java.lang.String> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.StringBinding mapToStringThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull java.util.function.Function<? super V,java.lang.String> mapper, @Nonnull java.util.function.Predicate<java.lang.String> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.StringBinding mapToStringThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.String defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.String>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.String>> filter)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <K,V> javafx.beans.binding.StringBinding mapToStringThenFilterThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.String>> mapper, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<java.lang.String>> filter)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.mapper
- a non-interfering, stateless function to apply to the each value before filtering.filter
- a non-interfering, stateless predicate to apply to the each value after mapping.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> filterThenMapThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull R defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,R> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> filterThenMapThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<R> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,R> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> filterThenMapThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull R defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> filterThenMapThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<R> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.BooleanBinding filterThenMapToBooleanThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Boolean> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.BooleanBinding filterThenMapToBooleanThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Boolean> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.BooleanBinding filterThenMapToBooleanThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.BooleanBinding filterThenMapToBooleanThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.IntegerBinding filterThenMapToIntegerThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Integer defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Integer> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.IntegerBinding filterThenMapToIntegerThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Integer> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.IntegerBinding filterThenMapToIntegerThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Integer defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.IntegerBinding filterThenMapToIntegerThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.LongBinding filterThenMapToLongThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Long defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Long> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.LongBinding filterThenMapToLongThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Long> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.LongBinding filterThenMapToLongThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Long defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.LongBinding filterThenMapToLongThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.FloatBinding filterThenMapToFloatThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Float defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Float> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.FloatBinding filterThenMapToFloatThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Float> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.FloatBinding filterThenMapToFloatThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Float defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.FloatBinding filterThenMapToFloatThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.DoubleBinding filterThenMapToDoubleThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Double defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Double> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.DoubleBinding filterThenMapToDoubleThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Double> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.DoubleBinding filterThenMapToDoubleThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.Double defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.DoubleBinding filterThenMapToDoubleThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.StringBinding filterThenMapToStringThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.String defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.String> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.StringBinding filterThenMapToStringThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.String> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.StringBinding filterThenMapToStringThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.lang.String defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper)
items
- the observable list of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.StringBinding filterThenMapToStringThenFindFirst(@Nonnull javafx.collections.ObservableList<T> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper)
items
- the observable list of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> filterThenMapThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull R defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,R> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> filterThenMapThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<R> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,R> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> filterThenMapThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull R defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T,R> javafx.beans.binding.ObjectBinding<R> filterThenMapThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<R> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,R>> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.BooleanBinding filterThenMapToBooleanThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Boolean> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.BooleanBinding filterThenMapToBooleanThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Boolean> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.BooleanBinding filterThenMapToBooleanThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.BooleanBinding filterThenMapToBooleanThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Boolean>> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.IntegerBinding filterThenMapToIntegerThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Integer defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Integer> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.IntegerBinding filterThenMapToIntegerThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Integer> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.IntegerBinding filterThenMapToIntegerThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Integer defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.IntegerBinding filterThenMapToIntegerThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Integer>> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.LongBinding filterThenMapToLongThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Long defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Long> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.LongBinding filterThenMapToLongThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Long> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.LongBinding filterThenMapToLongThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Long defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.LongBinding filterThenMapToLongThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Long>> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.FloatBinding filterThenMapToFloatThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Float defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Float> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.FloatBinding filterThenMapToFloatThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Float> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.FloatBinding filterThenMapToFloatThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Float defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.FloatBinding filterThenMapToFloatThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Float>> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.DoubleBinding filterThenMapToDoubleThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Double defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Double> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.DoubleBinding filterThenMapToDoubleThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.Double> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.DoubleBinding filterThenMapToDoubleThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.Double defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.DoubleBinding filterThenMapToDoubleThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.Double>> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.StringBinding filterThenMapToStringThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.String defaultValue, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.String> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.StringBinding filterThenMapToStringThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull java.util.function.Predicate<? super T> filter, @Nonnull java.util.function.Function<? super T,java.lang.String> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.StringBinding filterThenMapToStringThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.lang.String defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper)
items
- the observable set of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <T> javafx.beans.binding.StringBinding filterThenMapToStringThenFindFirst(@Nonnull javafx.collections.ObservableSet<T> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super T>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super T,java.lang.String>> mapper)
items
- the observable set of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each element. before mapping.mapper
- a non-interfering, stateless function to apply to the each element after filtering.@Nonnull public static <K,V,R> javafx.beans.binding.ObjectBinding<R> filterThenMapThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull R defaultValue, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,R> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V,R> javafx.beans.binding.ObjectBinding<R> filterThenMapThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<R> supplier, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,R> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V,R> javafx.beans.binding.ObjectBinding<R> filterThenMapThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull R defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,R>> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V,R> javafx.beans.binding.ObjectBinding<R> filterThenMapThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<R> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,R>> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.BooleanBinding filterThenMapToBooleanThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,java.lang.Boolean> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.BooleanBinding filterThenMapToBooleanThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,java.lang.Boolean> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.BooleanBinding filterThenMapToBooleanThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Boolean defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Boolean>> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.BooleanBinding filterThenMapToBooleanThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Boolean> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Boolean>> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.IntegerBinding filterThenMapToIntegerThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Integer defaultValue, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,java.lang.Integer> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.IntegerBinding filterThenMapToIntegerThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,java.lang.Integer> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.IntegerBinding filterThenMapToIntegerThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Integer defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Integer>> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.IntegerBinding filterThenMapToIntegerThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Integer> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Integer>> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.LongBinding filterThenMapToLongThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Long defaultValue, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,java.lang.Long> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.LongBinding filterThenMapToLongThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,java.lang.Long> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.LongBinding filterThenMapToLongThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Long defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Long>> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.LongBinding filterThenMapToLongThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Long> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Long>> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.FloatBinding filterThenMapToFloatThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Float defaultValue, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,java.lang.Float> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.FloatBinding filterThenMapToFloatThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,java.lang.Float> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.FloatBinding filterThenMapToFloatThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Float defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Float>> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.FloatBinding filterThenMapToFloatThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Float> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Float>> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.DoubleBinding filterThenMapToDoubleThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Double defaultValue, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,java.lang.Double> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.DoubleBinding filterThenMapToDoubleThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,java.lang.Double> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.DoubleBinding filterThenMapToDoubleThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.Double defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Double>> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.DoubleBinding filterThenMapToDoubleThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.Double> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.Double>> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.StringBinding filterThenMapToStringThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.String defaultValue, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,java.lang.String> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.StringBinding filterThenMapToStringThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull java.util.function.Predicate<? super V> filter, @Nonnull java.util.function.Function<? super V,java.lang.String> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.StringBinding filterThenMapToStringThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.lang.String defaultValue, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.String>> mapper)
items
- the observable map of items.defaultValue
- the value to be returned if there is no value present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.@Nonnull public static <K,V> javafx.beans.binding.StringBinding filterThenMapToStringThenFindFirst(@Nonnull javafx.collections.ObservableMap<K,V> items, @Nonnull java.util.function.Supplier<java.lang.String> supplier, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Predicate<? super V>> filter, @Nonnull javafx.beans.value.ObservableValue<java.util.function.Function<? super V,java.lang.String>> mapper)
items
- the observable map of items.supplier
- a Supplier
whose result is returned if no value is present.filter
- a non-interfering, stateless predicate to apply to the each value before mapping.mapper
- a non-interfering, stateless function to apply to the each value after filtering.