Interface CheckedUnaryOperator<T,​E extends java.lang.Exception>

  • All Superinterfaces:
    CheckedFunction<T,​T,​E>, java.util.function.Function<T,​T>, java.util.function.UnaryOperator<T>
    All Known Subinterfaces:
    CheckedEolUnaryOperator<T>
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface CheckedUnaryOperator<T,​E extends java.lang.Exception>
    extends java.util.function.UnaryOperator<T>, CheckedFunction<T,​T,​E>
    Since:
    1.6
    Author:
    Sina Madani
    • Method Detail

      • apply

        default T apply​(T t)
        Specified by:
        apply in interface CheckedFunction<T,​T,​E extends java.lang.Exception>
        Specified by:
        apply in interface java.util.function.Function<T,​E extends java.lang.Exception>