| Interface | Description |
|---|---|
| BiConsumerEx<T,U,E extends java.lang.Throwable> |
Represents an operation that accepts two input arguments and returns no
result.
|
| BiFunctionEx<T,U,R,E extends java.lang.Throwable> |
Represents a function that accepts two arguments and produces a result.
|
| BinaryOperatorEx<T,E extends java.lang.Throwable> |
Represents an operation upon two operands of the same type, producing a result
of the same type as the operands.
|
| BiPredicateEx<T,U,E extends java.lang.Throwable> |
Represents a predicate (boolean-valued function) of two arguments.
|
| BooleanSupplierEx<E extends java.lang.Throwable> |
Represents a supplier of
boolean-valued results. |
| ConsumerEx<T,E extends java.lang.Throwable> |
Represents an operation that accepts a single input argument and returns no
result.
|
| DoubleBinaryOperatorEx<E extends java.lang.Throwable> |
Represents an operation upon two
double-valued operands and producing a
double-valued result. |
| DoubleConsumerEx<E extends java.lang.Throwable> |
Represents an operation that accepts a single
double-valued argument and
returns no result. |
| DoubleFunctionEx<R,E extends java.lang.Throwable> |
Represents a function that accepts a double-valued argument and produces a
result.
|
| DoublePredicateEx<E extends java.lang.Throwable> |
Represents a predicate (boolean-valued function) of one
double-valued
argument. |
| DoubleSupplierEx<E extends java.lang.Throwable> |
Represents a supplier of
double-valued results. |
| DoubleToIntFunctionEx<E extends java.lang.Throwable> |
Represents a function that accepts a double-valued argument and produces an
int-valued result.
|
| DoubleToLongFunctionEx<E extends java.lang.Throwable> |
Represents a function that accepts a double-valued argument and produces a
long-valued result.
|
| DoubleUnaryOperatorEx<E extends java.lang.Throwable> |
Represents an operation on a single
double-valued operand that produces
a double-valued result. |
| FunctionEx<T,R,E extends java.lang.Throwable> |
Represents a function that accepts one argument and produces a result.
|
| IntBinaryOperatorEx<E extends java.lang.Throwable> |
Represents an operation upon two
int-valued operands and producing an
int-valued result. |
| IntConsumerEx<E extends java.lang.Throwable> |
Represents an operation that accepts a single
int-valued argument and
returns no result. |
| IntFunctionEx<R,E extends java.lang.Throwable> |
Represents a function that accepts an int-valued argument and produces a
result.
|
| IntPredicateEx<E extends java.lang.Throwable> |
Represents a predicate (boolean-valued function) of one
int-valued
argument. |
| IntSupplierEx<E extends java.lang.Throwable> |
Represents a supplier of
int-valued results. |
| IntToDoubleFunctionEx<E extends java.lang.Throwable> |
Represents a function that accepts an int-valued argument and produces a
double-valued result.
|
| IntToLongFunctionEx<E extends java.lang.Throwable> |
Represents a function that accepts an int-valued argument and produces a
long-valued result.
|
| IntUnaryOperatorEx<E extends java.lang.Throwable> |
Represents an operation on a single
int-valued operand that produces
an int-valued result. |
| LongBinaryOperatorEx<E extends java.lang.Throwable> |
Represents an operation upon two
long-valued operands and producing a
long-valued result. |
| LongConsumerEx<E extends java.lang.Throwable> |
Represents an operation that accepts a single
long-valued argument and
returns no result. |
| LongFunctionEx<R,E extends java.lang.Throwable> |
Represents a function that accepts a long-valued argument and produces a
result.
|
| LongPredicateEx<E extends java.lang.Throwable> |
Represents a predicate (boolean-valued function) of one
long-valued
argument. |
| LongSupplierEx<E extends java.lang.Throwable> |
Represents a supplier of
long-valued results. |
| LongToDoubleFunctionEx<E extends java.lang.Throwable> |
Represents a function that accepts a long-valued argument and produces a
double-valued result.
|
| LongToIntFunctionEx<E extends java.lang.Throwable> |
Represents a function that accepts a long-valued argument and produces an
int-valued result.
|
| LongUnaryOperatorEx<E extends java.lang.Throwable> |
Represents an operation on a single
long-valued operand that produces
a long-valued result. |
| ObjDoubleConsumerEx<T,E extends java.lang.Throwable> |
Represents an operation that accepts an object-valued and a
double-valued argument, and returns no result. |
| ObjIntConsumerEx<T,E extends java.lang.Throwable> |
Represents an operation that accepts an object-valued and a
int-valued argument, and returns no result. |
| ObjLongConsumerEx<T,E extends java.lang.Throwable> |
Represents an operation that accepts an object-valued and a
long-valued argument, and returns no result. |
| PredicateEx<T,E extends java.lang.Throwable> |
Represents a predicate (boolean-valued function) of one argument.
|
| SupplierEx<T,E extends java.lang.Throwable> |
Represents a supplier of results.
|
| ToDoubleBiFunctionEx<T,U,E extends java.lang.Throwable> |
Represents a function that accepts two arguments and produces a double-valued
result.
|
| ToDoubleFunctionEx<T,E extends java.lang.Throwable> |
Represents a function that produces a double-valued result.
|
| ToIntBiFunctionEx<T,U,E extends java.lang.Throwable> |
Represents a function that accepts two arguments and produces an int-valued
result.
|
| ToIntFunctionEx<T,E extends java.lang.Throwable> |
Represents a function that produces an int-valued result.
|
| ToLongBiFunctionEx<T,U,E extends java.lang.Throwable> |
Represents a function that accepts two arguments and produces a long-valued
result.
|
| ToLongFunctionEx<T,E extends java.lang.Throwable> |
Represents a function that produces a long-valued result.
|
| UnaryOperatorEx<T,E extends java.lang.Throwable> |
Represents an operation on a single operand that produces a result of the
same type as its operand.
|
| Exception | Description |
|---|---|
| CoveringException |
Exception for covering checked exceptions from functional *Ex interfaces by default used in unchecked() method of the interfaces.
|