Uses of Interface
jfun.yan.Recovery

Packages that use Recovery
jfun.yan Basic component combinators and containers. 
 

Uses of Recovery in jfun.yan
 

Methods in jfun.yan that return Recovery
static
<T> Recovery<T>
Monad.onException(java.lang.Class<? extends java.lang.Throwable> type, Creator<T> creator)
          Create a Recovery object that will recover from a provided exception type by returning an alternative Creator object.
 

Methods in jfun.yan with parameters of type Recovery
static
<T> Component<T>
Monad.recover(Creator<T> c1, Recovery<T> r)
          Create a new Component object that will recover errors happened from the provided Component.
 Component<T> Component.recover(Recovery<T> r)
          Create a new Component object that will recover errors happened from this Component.