Uses of Interface
org.wildfly.clustering.function.UnaryOperator
Packages that use UnaryOperator
-
Uses of UnaryOperator in org.wildfly.clustering.function
Classes in org.wildfly.clustering.function that implement UnaryOperatorFields 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.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.identity()Returns an operator that returns its value.static <T> UnaryOperator<T> Returns an operator view of the specified function.static <T> UnaryOperator<T> Returns an operator that returns the result of the specified supplier, ignoring its parameter.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.