Uses of Interface
net.anwiba.commons.lang.functional.IFunction
-
Packages that use IFunction Package Description net.anwiba.commons.lang.functional net.anwiba.commons.lang.optional net.anwiba.commons.lang.visitor -
-
Uses of IFunction in net.anwiba.commons.lang.functional
Methods in net.anwiba.commons.lang.functional that return IFunction Modifier and Type Method Description static <T> IFunction<T,T,java.lang.RuntimeException>IFunction. identity()default <R> IFunction<I,R,E>IFunction. then(IFunction<? super O,? extends R,E> function)Methods in net.anwiba.commons.lang.functional with parameters of type IFunction Modifier and Type Method Description default IAggregator<I,V,O,E>IAggregator. then(IFunction<? super O,? extends O,E> after)default <R> IFunction<I,R,E>IFunction. then(IFunction<? super O,? extends R,E> function) -
Uses of IFunction in net.anwiba.commons.lang.optional
Methods in net.anwiba.commons.lang.optional with parameters of type IFunction Modifier and Type Method Description static <I,O,E extends java.lang.Exception>
IOptional<O,E>Optional. bind(IOptional<I,E> optional, IFunction<I,O,E> function) -
Uses of IFunction in net.anwiba.commons.lang.visitor
Methods in net.anwiba.commons.lang.visitor with parameters of type IFunction Modifier and Type Method Description FunctionVisitor<K,I,O,E>FunctionVisitor. defaultCase(IFunction<I,O,E> function)static <I,O,E extends java.lang.Exception>
FunctionVisitor<java.lang.Class,I,O,E>ClassVisitors. ifCase(IFunction<I,O,E> function, java.lang.Class... keys)static <K extends java.lang.Enum<K>,I,O,E extends java.lang.Exception>
FunctionVisitor<K,I,O,E>EnumVisitors. ifCase(IFunction<I,O,E> function, K... keys)FunctionVisitor<K,I,O,E>FunctionVisitor. ifCase(IFunction<I,O,E> function, K... keys)
-