| Package | Description |
|---|---|
| net.digitalid.utility.functional.failable |
Provides failable interfaces for functional programming.
|
| net.digitalid.utility.functional.interfaces |
Provides interfaces for functional programming.
|
| Modifier and Type | Method and Description |
|---|---|
default @Nonnull Collector<INPUT,RESULT> |
FailableCollector.suppressExceptions()
Returns a collector that suppresses the exceptions of this collector and returns null instead.
|
default @Nonnull Collector<INPUT,RESULT> |
FailableCollector.suppressExceptions(@Nonnull Consumer<? super Exception> handler)
Returns a collector that suppresses the exceptions of this collector, passes them to the given exception handler and returns null instead.
|
default @Nonnull Collector<INPUT,RESULT> |
FailableCollector.suppressExceptions(@Nonnull Consumer<? super Exception> handler,
RESULT defaultResult)
Returns a collector that suppresses the exceptions of this collector, passes them to the given exception handler and returns the given default result instead.
|
default @Nonnull Collector<INPUT,RESULT> |
FailableCollector.suppressExceptions(RESULT defaultResult)
Returns a collector that suppresses the exceptions of this collector and returns the given default result instead.
|
| Modifier and Type | Method and Description |
|---|---|
default @Nonnull Collector<INPUT,RESULT> |
Collector.synchronize() |
Copyright © 2017. All rights reserved.