| Interface | Description |
|---|---|
| Factory<T> |
A generic factory interface for creating instances that do not need any additional dependencies or parameters.
|
| FailableConsumer<TYPE> | |
| IOFunction<T,R> | |
| ThrowingAction<E extends Exception> |
An action that takes no parameters and returns no values, but may have a side-effect and may throw an exception.
|
| ThrowingBiConsumer<T,U,E extends Exception> |
Represents an operation that accepts two arguments and returns no result.
|
| ThrowingBiFunction<T,U,R,E extends Exception> |
Represents a function that accepts two arguments and produces a result.
|
| ThrowingBinaryOperator<T,E extends Exception> |
Represents an operation on a single operand that produces a result of the same type as its operand.
|
| ThrowingBooleanSupplier<E extends Exception> |
Represents a supplier of boolean-valued results.
|
| ThrowingConsumer<T,E extends Throwable> |
Represents an operation that accepts a single input argument and returns no result.
|
| ThrowingFunction<T,R,E extends Exception> |
Represents a function that accepts one argument and produces a result, or throws an exception.
|
| ThrowingIntFunction<R,E extends Exception> |
Represents a function that accepts an int-valued argument and produces a result.
|
| ThrowingIntPredicate<E extends Exception> |
Represents a predicate (boolean-valued function) of one int-valued argument.
|
| ThrowingIntSupplier<E extends Exception> |
Represents a supplier of int-valued results.
|
| ThrowingLongBinaryOperator<E extends Exception> |
Represents an operation upon two long-valued operands and producing a long-valued result.
|
| ThrowingLongFunction<R,E extends Exception> |
Represents a function that accepts a long-valued argument and produces a result.
|
| ThrowingLongPredicate<E extends Exception> |
Represents a predicate (boolean-valued function) of one long-valued argument.
|
| ThrowingLongSupplier<E extends Exception> |
Represents a supplier of long-valued results.
|
| ThrowingLongUnaryOperator<E extends Exception> |
Represents an operation on a single long-valued operand that produces a long-valued result.
|
| ThrowingPredicate<T,E extends Exception> |
Represents a predicate (boolean-valued function) of one argument.
|
| ThrowingSupplier<T,E extends Exception> |
Represents a supplier of results, that may throw an exception.
|
| ThrowingToLongFunction<T,E extends Exception> |
Represents a function that produces a long-valued result.
|
| ThrowingUnaryOperator<T,E extends Exception> |
Represents an operation on a single operand that produces a result of the same type as its operand.
|
| Class | Description |
|---|---|
| IOFunctions |
Constructors for basic
IOFunction types |
| Predicates |
Constructors for basic
Predicate types |
| Suppliers |
Constructors for basic
Supplier types |
| ThrowingConsumers |
Constructors for basic
ThrowingConsumer types |
| ThrowingFunctions |
Constructors for basic
ThrowingFunction and ThrowingBiFunction types |
| Exception | Description |
|---|---|
| UncaughtCheckedException |
Wrapper around checked exceptions for rethrowing them as runtime exceptions when the signature of the containing method
cannot be changed to declare them.
|
Copyright © 2002–2018 The Neo4j Graph Database Project. All rights reserved.