Uses of Interface
aQute.bnd.exceptions.FunctionWithException
Packages that use FunctionWithException
Package
Description
This package is exported by biz.aQute.bnd.util.
-
Uses of FunctionWithException in aQute.bnd.build
Methods in aQute.bnd.build with parameters of type FunctionWithException -
Uses of FunctionWithException in aQute.bnd.exceptions
Methods in aQute.bnd.exceptions with parameters of type FunctionWithExceptionModifier and TypeMethodDescriptionstatic <T,R> Function<T, R> FunctionWithException.asFunction(FunctionWithException<T, R> unchecked) static <T,R> Function<T, R> FunctionWithException.asFunctionOrElse(FunctionWithException<T, R> unchecked, R orElse) static <T,R> Function<T, R> FunctionWithException.asFunctionOrElseGet(FunctionWithException<T, R> unchecked, Supplier<? extends R> orElseGet) -
Uses of FunctionWithException in aQute.bnd.remoteworkspace.client
Methods in aQute.bnd.remoteworkspace.client with parameters of type FunctionWithExceptionModifier and TypeMethodDescriptionprivate static RemoteWorkspaceRemoteWorkspaceClientFactory.findRemoteWorkspace(File dir, FunctionWithException<Integer, RemoteWorkspace> attach) -
Uses of FunctionWithException in aQute.bnd.result
Methods in aQute.bnd.result with parameters of type FunctionWithExceptionModifier and TypeMethodDescription<U> Result<U>Err.flatMap(FunctionWithException<? super V, ? extends Result<? extends U>> mapper) FlatMap the contained value if this is anOkvalue.<U> Result<U>Ok.flatMap(FunctionWithException<? super V, ? extends Result<? extends U>> mapper) FlatMap the contained value if this is anOkvalue.<U> Result<U>Result.flatMap(FunctionWithException<? super V, ? extends Result<? extends U>> mapper) FlatMap the contained value if this is anOkvalue.<U> Result<U>Err.map(FunctionWithException<? super V, ? extends U> mapper) Map the contained value if this is anOkvalue.<U> Result<U>Ok.map(FunctionWithException<? super V, ? extends U> mapper) Map the contained value if this is anOkvalue.<U> Result<U>Result.map(FunctionWithException<? super V, ? extends U> mapper) Map the contained value if this is anOkvalue.Err.mapErr(FunctionWithException<? super String, ? extends CharSequence> mapper) Map the contained error if this is anErrvalue.Ok.mapErr(FunctionWithException<? super String, ? extends CharSequence> mapper) Map the contained error if this is anErrvalue.Result.mapErr(FunctionWithException<? super String, ? extends CharSequence> mapper) Map the contained error if this is anErrvalue.Err.orElseThrow(FunctionWithException<? super String, ? extends R> throwableSupplier) Returns the contained value if this is anOkvalue.Ok.orElseThrow(FunctionWithException<? super String, ? extends R> throwableSupplier) Returns the contained value if this is anOkvalue.Result.orElseThrow(FunctionWithException<? super String, ? extends R> throwableSupplier) Returns the contained value if this is anOkvalue.Err.recover(FunctionWithException<? super String, ? extends V> recover) Recover the contained error if this is anErrvalue.Ok.recover(FunctionWithException<? super String, ? extends V> recover) Recover the contained error if this is anErrvalue.Result.recover(FunctionWithException<? super String, ? extends V> recover) Recover the contained error if this is anErrvalue.Err.recoverWith(FunctionWithException<? super String, ? extends Result<? extends V>> recover) Recover the contained error if this is anErrvalue.Ok.recoverWith(FunctionWithException<? super String, ? extends Result<? extends V>> recover) Recover the contained error if this is anErrvalue.Result.recoverWith(FunctionWithException<? super String, ? extends Result<? extends V>> recover) Recover the contained error if this is anErrvalue. -
Uses of FunctionWithException in aQute.lib.aspects
Methods in aQute.lib.aspects with parameters of type FunctionWithExceptionModifier and TypeMethodDescription<A,R> Aspects.InterceptBuilder<T> Aspects.InterceptBuilder.intercept(FunctionWithException<A, R> intercept, String name, Class<A> type) Intercept a one argument method callAspects.InterceptBuilder.intercept(FunctionWithException<Aspects.Invocation, Object> intercept, String name, Class<?>... types) Intercept a method call with a lambda.