Package de.treestack.throwing


package de.treestack.throwing
  • Interfaces
    Class
    Description
    BiConsumer<T1,T2,E extends Exception>
    Represents an operation that accepts two input arguments, returns no result and (optionally) throws an Exception.
    BiFunction<T1,T2,R,E extends Exception>
    Represents a function that accepts two arguments, produces a result and (optionally) throws an Exception.
    Represents an operation upon two operands of the same type, producing a result of the same type as the operands and (optionally) throwing an Exception.
    BiPredicate<T1,T2,E extends Exception>
    Represents a predicate (boolean-valued function) of two arguments that might throw an exception.
    Consumer<T,E extends Exception>
    Represents a function that accepts one argument, produces no result and (optionally) throws an Exception.
    Function<T,R,E extends Exception>
    Represents a function that accepts one argument, produces a result and (optionally) throws an Exception.
    Predicate<T,E extends Exception>
    Represents a predicate (boolean-valued function) of one argument that might throw an exception.
    Supplier<R,E extends Exception>
    Represents a function that accepts no arguments, produces a result and (optionally) throws an Exception.
    Represents an operation upon one operand, producing a result of the same type as the operand and (optionally) throwing an Exception.