All Classes and Interfaces
Class
Description
Represents an operation that accepts two input arguments and returns no
result.
Represents a function that accepts two arguments and produces a result.
Represents an operation upon two operands of the same type, producing a result
of the same type as the operands.
Represents a predicate (boolean-valued function) of two arguments.
Represents a function that accepts one argument and does not return any value;
Function might throw a checked exception instance.
Represents a function that accepts one argument and returns a value;
Function might throw a checked exception instance.
Functional interface mirroring
IntFunction<R>
for primitive ints from the java.util.function package.Represents a function that accepts one argument and returns a boolean value
Function might throw a checked exception instance.
Represents an action that can be performed.
Represents a function that accepts zero arguments and returns some value.
Represents an operation on a single operand that produces a result of the
same type as its operand.