Uses of Interface
com.hazelcast.function.FunctionEx
Package
Description
Serializable and exception-declaring variants of functional interfaces from
java.util.function
.-
Uses of FunctionEx in com.hazelcast.function
Modifier and TypeMethodDescriptiondefault <V> FunctionEx<T,
V> FunctionEx.andThen
(FunctionEx<? super R, ? extends V> after) Serializable
variant ofjava.util.function.Function#andThen(Function)
.default <V> FunctionEx<V,
R> FunctionEx.compose
(FunctionEx<? super V, ? extends T> before) Serializable
variant ofjava.util.function.Function#compose(Function)
.static <K> FunctionEx<Map.Entry<K,
?>, K> Functions.entryKey()
Returns a function that extracts the key of aMap.Entry
.static <V> FunctionEx<Map.Entry<?,
V>, V> Functions.entryValue()
Returns a function that extracts the value of aMap.Entry
.static <T> FunctionEx<T,
T> FunctionEx.identity()
Serializable
variant ofjava.util.function.Function#identity()
.static <V,
R> FunctionEx<V, R> FunctionEx.unchecked
(FunctionEx<V, R> function) Enforces that the return type is FunctionEx, to be used to wrap some expressions without casting.static <T> FunctionEx<T,
T> Functions.wholeItem()
Synonym foridentity()
, to be used as a projection function (e.g., key extractor).Modifier and TypeMethodDescriptiondefault <V> BiFunctionEx<T,
U, V> BiFunctionEx.andThen
(FunctionEx<? super R, ? extends V> after) Serializable
variant ofjava.util.function.BiFunction#andThen(Function)
.default <V> FunctionEx<T,
V> FunctionEx.andThen
(FunctionEx<? super R, ? extends V> after) Serializable
variant ofjava.util.function.Function#andThen(Function)
.default <V> SupplierEx<V>
SupplierEx.andThen
(FunctionEx<? super T, ? extends V> after) Serializable
analogue ofjava.util.function.Function#andThen(Function)
.default <V> FunctionEx<V,
R> FunctionEx.compose
(FunctionEx<? super V, ? extends T> before) Serializable
variant ofjava.util.function.Function#compose(Function)
.static <V,
R> FunctionEx<V, R> FunctionEx.unchecked
(FunctionEx<V, R> function) Enforces that the return type is FunctionEx, to be used to wrap some expressions without casting.