Uses of Interface
io.smallrye.common.function.ExceptionUnaryOperator
-
Uses of ExceptionUnaryOperator in io.smallrye.common.function
Methods in io.smallrye.common.function that return ExceptionUnaryOperatorModifier and TypeMethodDescriptiondefault ExceptionUnaryOperator<T, E> ExceptionUnaryOperator.andThen(ExceptionUnaryOperator<T, ? extends E> after) Returns a unary operator that passes the result of this operator through the given operator.default ExceptionUnaryOperator<T, E> ExceptionUnaryOperator.compose(ExceptionUnaryOperator<T, ? extends E> before) Returns a unary operator which passes the result of the given operator through this operator.static <T,E extends Exception>
ExceptionUnaryOperator<T, E> ExceptionUnaryOperator.identity()Returns the identity operator, which returns its argument.static <T,E extends Exception>
ExceptionUnaryOperator<T, E> ExceptionUnaryOperator.of(ExceptionFunction<T, T, E> func) Returns a unary operator which is implemented by the given function.Methods in io.smallrye.common.function with parameters of type ExceptionUnaryOperatorModifier and TypeMethodDescriptiondefault ExceptionBinaryOperator<T, E> ExceptionBinaryOperator.andThen(ExceptionUnaryOperator<T, ? extends E> after) Returns a binary operator which passes the result of this operator through the given unary operator.default ExceptionUnaryOperator<T, E> ExceptionUnaryOperator.andThen(ExceptionUnaryOperator<T, ? extends E> after) Returns a unary operator that passes the result of this operator through the given operator.default ExceptionUnaryOperator<T, E> ExceptionUnaryOperator.compose(ExceptionUnaryOperator<T, ? extends E> before) Returns a unary operator which passes the result of the given operator through this operator.