Uses of Interface
com.aoapps.lang.concurrent.CallableE
-
Packages that use CallableE Package Description com.aoapps.lang.exception com.aoapps.lang.i18n Internationalization (i18n) utilities shared by many projects. -
-
Uses of CallableE in com.aoapps.lang.exception
Methods in com.aoapps.lang.exception with parameters of type CallableE Modifier and Type Method Description static <V> VWrappedException. callE(CallableE<V,?> callable)Invokes the given callable, wrapping any checked exceptions.static <V> VWrappedException. callE(CallableE<V,?> callable, Object... extraInfo)Invokes the given callable, wrapping any checked exceptions.static <V> VWrappedException. callE(CallableE<V,?> callable, String message)Invokes the given callable, wrapping any checked exceptions.static <V> VWrappedException. callE(CallableE<V,?> callable, String message, Object... extraInfo)Invokes the given callable, wrapping any checked exceptions. -
Uses of CallableE in com.aoapps.lang.i18n
Methods in com.aoapps.lang.i18n with parameters of type CallableE Modifier and Type Method Description static <V> VThreadLocale. call(Locale locale, CallableE<? extends V,? extends RuntimeException> callable)Changes the current thread locale then calls the Callable.static <V,Ex extends Throwable>
VThreadLocale. call(Locale locale, Class<? extends Ex> exClass, CallableE<? extends V,? extends Ex> callable)Changes the current thread locale then calls the Callable.
-