Uses of Interface
org.wildfly.clustering.function.UnaryOperator
Packages that use UnaryOperator
-
Uses of UnaryOperator in org.wildfly.clustering.context
Methods in org.wildfly.clustering.context with parameters of type UnaryOperatorModifier and TypeMethodDescriptionstatic <C> ContextReference<C> ContextReference.of(Supplier<C> supplier, Consumer<C> consumer, UnaryOperator<C> operator) -
Uses of UnaryOperator in org.wildfly.clustering.function
Fields in org.wildfly.clustering.function declared as UnaryOperatorModifier and TypeFieldDescriptionstatic final UnaryOperator<?> UnaryOperator.IDENTITYstatic final UnaryOperator<?> UnaryOperator.NULLMethods in org.wildfly.clustering.function that return UnaryOperatorModifier and TypeMethodDescriptiondefault UnaryOperator<T> UnaryOperator.andThen(UnaryOperator<T> operator) Returns an operator that applies the specified operator to the result of this operator.static <T> UnaryOperator<T> Returns an operator view of the specified function.default UnaryOperator<T> UnaryOperator.compose(UnaryOperator<T> operator) Returns an operator that applies this operator to the result of the specified operator.static <T> UnaryOperator<T> UnaryOperator.empty()Returns an operator that always returns null, ignoring its parameter.static <T> UnaryOperator<T> Returns an operator that returns the result of the specified supplier, ignoring its parameter.default UnaryOperator<T> UnaryOperator.handle(BiFunction<T, RuntimeException, T> handler) Returns a new operator that delegates to this operator using the specified exception handler.static <T> UnaryOperator<T> UnaryOperator.identity()Returns an operator that returns its value.static <T> UnaryOperator<T> UnaryOperator.of(T value) Returns an operator that always returns the specified value, ignoring its parameter.default UnaryOperator<T> Returns an operator that applies this function to the value returned by the specified provider if its value does not match the specified predicate.default UnaryOperator<T> UnaryOperator.withDefault(Predicate<T> predicate, Supplier<T> defaultValue) Returns an operator that applies this function if its parameter matches the specified predicate, or returns the value provided by the specified supplier otherwise.