- uncheck(Unchecker.ThrowingSupplier<T>, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
-
Converts Checked throwing supplier -> standard supplier, any checked exceptions are wrapped using the input
exception transformer
- uncheck(Unchecker.ThrowingFunction<In, Out>, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
-
Converts Checked throwing function -> standard function, any checked exceptions are wrapped using the input
exception transformer
- uncheck(Unchecker.ThrowingBiFunction<In1, In2, Out>, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
-
- uncheck(Unchecker.ThrowingRunnable, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
-
Converts Checked throwing runnable -> standard runnable, any checked exceptions are wrapped using the input
exception transformer
- uncheck(Unchecker.ThrowingConsumer<T>, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
-
Converts Checked throwing consumer -> standard consumer, any checked exceptions are wrapped using the input
exception transformer
- uncheck(Unchecker.ThrowingBiConsumer<T, U>, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
-
- uncheck(Unchecker.ThrowingSupplier<T>) - Static method in class alexh.Unchecker
-
- uncheck(Unchecker.ThrowingFunction<In, Out>) - Static method in class alexh.Unchecker
-
- uncheck(Unchecker.ThrowingBiFunction<In1, In2, Out>) - Static method in class alexh.Unchecker
-
- uncheck(Unchecker.ThrowingRunnable) - Static method in class alexh.Unchecker
-
- uncheck(Unchecker.ThrowingConsumer<T>) - Static method in class alexh.Unchecker
-
- uncheck(Unchecker.ThrowingBiConsumer<T, U>) - Static method in class alexh.Unchecker
-
- unchecked(Unchecker.ThrowingRunnable, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
-
Runs wrapping any checked exceptions using the input exception transformer
- unchecked(Unchecker.ThrowingRunnable) - Static method in class alexh.Unchecker
-
- uncheckedGet(Unchecker.ThrowingSupplier<T>, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
-
Gets the supplier result wrapping any checked exceptions using the input exception transformer
- uncheckedGet(Unchecker.ThrowingSupplier<T>) - Static method in class alexh.Unchecker
-
- Unchecker - Class in alexh
-
Utility methods to handle unwanted checked exceptions, avoiding try-catch blocks that simply wrap checked
exceptions in unchecked exceptions
- Unchecker() - Constructor for class alexh.Unchecker
-
- Unchecker.ThrowingBiConsumer<T,U> - Interface in alexh
-
Operation that accepts two arguments and returns no result, but could throw a checked exception
- Unchecker.ThrowingBiFunction<In1,In2,Out> - Interface in alexh
-
Function that accepts two arguments and produces a result, but could throw a checked exception
- Unchecker.ThrowingConsumer<T> - Interface in alexh
-
Operation that accepts a single input argument and returns no result, but could throw a checked exception
- Unchecker.ThrowingFunction<In,Out> - Interface in alexh
-
Function that accepts a single argument and produces a result, but could throw a checked exception
- Unchecker.ThrowingRunnable - Interface in alexh
-
Operation that returns no result, but could throw a checked exception
- Unchecker.ThrowingSupplier<T> - Interface in alexh
-
Represents a supplier of results, that could throw a checked exception
- unmodifiable() - Method in interface alexh.Fluent.Map
-
Returns an unmodifiable view of this map.