Uses of Interface
net.anwiba.commons.lang.functional.IIterable
-
Packages that use IIterable Package Description net.anwiba.commons.lang.functional net.anwiba.commons.lang.stream -
-
Uses of IIterable in net.anwiba.commons.lang.functional
Methods in net.anwiba.commons.lang.functional that return IIterable Modifier and Type Method Description default IIterable<O,E>IIterable. iterable(IAcceptor<O> acceptor) -
Uses of IIterable in net.anwiba.commons.lang.stream
Classes in net.anwiba.commons.lang.stream that implement IIterable Modifier and Type Class Description classIterableConvertingIterable<I,O,E extends java.lang.Exception>classIterableCountingIterable<I,O,E extends java.lang.Exception>classIterableFilteringIterable<T,E extends java.lang.Exception>classIterableFlattingIterable<I,O,E extends java.lang.Exception>classJavaUtilIterableFilteringIterable<T,E extends java.lang.Exception>Methods in net.anwiba.commons.lang.stream with parameters of type IIterable Modifier and Type Method Description static <T,E extends java.lang.Exception>
IStream<T,E>Streams. of(java.lang.Class<E> exceptionClass, IIterable<T,E> input)static <T,E extends java.lang.Exception>
IStream<T,E>Streams. of(java.lang.Class<E> exceptionClass, IIterable<T,E> input, ICloseable<E> closeable)static <T> IStream<T,java.lang.RuntimeException>Streams. of(IIterable<T,java.lang.RuntimeException> input)Constructors in net.anwiba.commons.lang.stream with parameters of type IIterable Constructor Description IterableConvertingIterable(IIterable<I,E> input, IAcceptor<I> acceptor, IConverter<I,O,E> converter)IterableCountingIterable(IIterable<I,E> input, IAcceptor<I> acceptor, IAggregator<java.lang.Integer,I,O,E> aggegator)IterableFilteringIterable(IIterable<T,E> input, IAcceptor<T> acceptor)IterableFlattingIterable(IIterable<I,E> input, IAcceptor<I> acceptor, IConverter<I,java.lang.Iterable<O>,E> converter)
-