| Interface | Description |
|---|---|
| Consumer2<A,B> |
Equal to
BiConsumer. |
| Consumer3<A,B,C> |
Equal to
BiConsumer, but with 3 arguments. |
| Consumer4<A,B,C,D> |
Equal to
BiConsumer, but with 4 arguments. |
| Consumer5<A,B,C,D,E> |
Equal to
BiConsumer, but with 5 arguments. |
| DangerousBiConsumer<A,B,E extends java.lang.Exception> | |
| DangerousBiFunction<A,B,R,E extends java.lang.Exception> | |
| DangerousConsumer<T,E extends java.lang.Exception> | |
| DangerousFunction<T,R,E extends java.lang.Exception> | |
| DangerousRunnable<E extends java.lang.Exception> | |
| DangerousSupplier<T,E extends java.lang.Exception> | |
| Function2<A,B,R> |
Equal to
BiFunction. |
| Function3<A,B,C,R> |
Equal to
BiFunction but with 3 arguments. |
| Function4<A,B,C,D,R> |
Equal to
BiFunction but with 4 arguments. |
| Function5<A,B,C,D,E,R> |
Equal to
BiFunction but with 5 arguments. |
| Predicate2<A,B> |
Equal to
BiPredicate. |
| Predicate3<A,B,C> |
Equal to
BiPredicate but with 3 arguments. |
| Predicate4<A,B,C,D> |
Equal to
BiPredicate but with 4 arguments. |
| Predicate5<A,B,C,D,E> |
Equal to
BiPredicate but with 5 arguments. |
| Class | Description |
|---|---|
| MapCollectors |
Class provides static factory methods to create
Collector instances to transform streams into maps. |
| MapStream<K,V> | |
| Tuple2<A,B> |
Final immutable container for 2 objects of different types.
|
| Tuple3<A,B,C> |
Final immutable container for 3 objects of different types.
|
| Tuple4<A,B,C,D> |
Final immutable container for 4 objects of different types.
|
| Tuple5<A,B,C,D,E> |
Final immutable container for 5 objects of different types.
|
| UberStream<T> |
Proxy class for any
Stream. |