| Interface | Description |
|---|---|
| IBiConsumer<T,U> |
Represents an operation that accepts two input arguments and returns no
result and is serializable.
|
| IBiFunction<T,U,R> |
Represents a function that accepts two arguments and produces a result.
|
| IBiPredicate<T,U> |
Represents a predicate (boolean-valued function) of two arguments that is
serializable.
|
| IBooleanFunction<R> |
Represents a function that accepts a boolean-valued argument and produces a
result.
|
| IBooleanPredicate |
Represents a predicate (boolean-valued function) of one
boolean-valued argument. |
| ICharConsumer |
Represents an operation that accepts a single
char-valued argument
and returns no result. |
| IConsumer<T> |
Represents an operation that accepts a single input argument and returns no
result but may throw an Exception.
|
| IFunction<T,R> |
Represents a serializable function that accepts one argument and produces a
result.
|
| IIntToFloatFunction |
Represents a function that accepts an int-valued argument and produces a
float-valued result.
|
| IPredicate<T> |
Represents a predicate (boolean-valued function) of one argument that is
serializable.
|
| ISupplier<T> |
Represents a serializable supplier of results.
|
| IThrowingConsumer<T,EXTYPE extends Throwable> |
Represents an operation that accepts a single input argument and returns no
result but may throw an Exception.
|
| IThrowingFunction<T,R,EXTYPE extends Throwable> |
Represents a function that accepts one argument and produces a result and may
throw an Exception.
|
| IThrowingSupplier<T,EXTYPE extends Throwable> |
Represents a supplier of results that may throw an Exception.
|
| IToBooleanFunction<T> |
Represents a function that produces a boolean-valued result.
|
| ITriConsumer<T,U,V> |
Represents an operation that accepts three input arguments and returns no
result.
|
Copyright © 2014–2017 Philip Helger. All rights reserved.