FunctionalInterface
types.Interface | Description |
---|---|
Collectable<T> |
A common super type for types like
Seq or Window delegating
common aggregation functions to Collectable.collect(Collector) |
Seq<T> |
A sequential, ordered
Stream that adds all sorts of useful methods that work only because
it is sequential and ordered. |
Window<T> |
A window containing the data for its partition, to perform calculations upon.
|
WindowSpecification<T> |
A specification for a
Window . |
Class | Description |
---|---|
Agg |
A set of additional
Collector implementations. |
Async | |
Blocking |
A factory class for methods that wrap functional interfaces like
Supplier in a "blocking" (ForkJoinPool.ManagedBlocker ) equivalent, which
can be used with the ForkJoinPool . |
Sneaky |
Improved interoperability between checked exceptions and Java 8.
|
Unchecked |
Improved interoperability between checked exceptions and Java 8.
|
Exception | Description |
---|---|
UncheckedException |
A generic unchecked exception that wraps checked exceptions thrown from lambdas passed
to any of
Unchecked 's methods. |
Copyright © 2018. All rights reserved.