| Interface | Description |
|---|---|
| BiConsumer<T,U> |
Represents an operation that accepts two arguments and returns no result.
|
| BiFunction<T,U,R> |
Represents a function that accepts two arguments and produces a result.
|
| BinaryOperator<T> |
Represents an operation on a single operand that produces a result of the same type as its operand.
|
| BooleanSupplier |
Represents a supplier of boolean-valued results.
|
| Consumer<T> |
Represents an operation that accepts a single input argument and returns no result.
|
| Factory<T> |
A generic factory interface for creating instances that do not need any additional dependencies or parameters.
|
| Function<T,R> |
Represents a function that accepts one argument and produces a result.
|
| Function2<T1,T2,R> | Deprecated
use
BiFunction instead |
| IntFunction<R> |
Represents a function that accepts an int-valued argument and produces a result.
|
| IntPredicate |
Represents a predicate (boolean-valued function) of one int-valued argument.
|
| IntSupplier |
Represents a supplier of int-valued results.
|
| IOFunction<T,R> | |
| LongBinaryOperator |
Represents an operation upon two long-valued operands and producing a long-valued result.
|
| LongFunction<R> |
Represents a function that accepts a long-valued argument and produces a result.
|
| LongPredicate |
Represents a predicate (boolean-valued function) of one long-valued argument.
|
| LongSupplier |
Represents a supplier of long-valued results.
|
| LongUnaryOperator |
Represents an operation on a single long-valued operand that produces a long-valued result.
|
| Predicate<T> |
Represents a predicate (boolean-valued function) of one argument.
|
| RawFunction<T,R,E extends Exception> | Deprecated
use
ThrowingFunction instead |
| Supplier<T> |
Represents a supplier of results.
|
| 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 Exception> |
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.
|
| ToIntFunction<T> |
Represents a function that accepts one argument and produces an int.
|
| ToLongFunction<T> |
Represents a function that produces a long-valued result.
|
| UnaryOperator<T> |
Represents an operation on a single operand that produces a result of the same type as its operand.
|
| Class | Description |
|---|---|
| BiConsumers |
Constructors for basic
BiConsumer types |
| Consumers |
Constructors for basic
Consumer types |
| Functions |
Constructors for basic
Function and BiFunction types |
| IntPredicates |
Constructors for basic
IntPredicate types |
| 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 |
Copyright © 2002–2015 The Neo4j Graph Database Project. All rights reserved.