| Accepter<T> |
This is similar to Java Consumer but the disparity of exceptions throws.
|
| Condition |
Represents an operation that returns a condition/boolean.
|
| Dealer<T> |
Represents a dealer of results.
|
| Executable |
Represent operations that need the Runnable like behavior.
|
| Generator<T> |
Represent operations that will return unique/generated values every time Generator.generate() is called.
|
| ThrowingFunction<T,R> |
When you find yourself in a situation where you need to use a method ( that throws an exception)
withing Lambda, this class is what you need to achieve your goal without Java complaining.
|
| ThrowingUnaryOperation<T> |
Represents an operation on a single operand that produces a result of the same type as its
operand.
|
| TriConsumer<X,Y,Z> |
Represents an operation that accepts three input arguments and returns no result.
|