@Version(value="1.0.0")
Interface | Description |
---|---|
InvertibleFunction<T,R> |
Describes a function from F to T.
|
ThrowingConsumer<T,E extends java.lang.Exception> |
As
Consumer but parameterized over an exception type which is allowed
to be thrown by ThrowingConsumer.accept(Object) . |
ThrowingFunction<T,R,E extends java.lang.Exception> |
As
Function but parameterized over an exception type which is allowed
to be thrown by ThrowingFunction.apply(Object) . |
ThrowingRunnable<E extends java.lang.Exception> |
As
Runnable but parameterized over an exception type which is allowed
to be thrown by ThrowingRunnable.run() . |
ThrowingSupplier<T,E extends java.lang.Exception> |
As
Supplier but parameterized over an exception type which is allowed
to be thrown by ThrowingSupplier.get() . |
TriFunction<O1,O2,O3,R> |
Represents a function that accepts two arguments and produces a result.
|
TriPredicate<O1,O2,O3> |