IteratorBuilder<T> |
IteratorBuilder.concat(Iterator<T> t) |
IteratorBuilder<T> |
IteratorBuilder.concat(IteratorBuilder<T> t) |
<V> IteratorBuilder<V> |
IteratorBuilder.convert(Function<T,V> t) |
<V> IteratorBuilder<V> |
IteratorBuilder.convert(Function<T,V> t,
String name) |
<V> IteratorBuilder<V> |
IteratorBuilder.convertMulti(Function<T,List<V>> t) |
<V> IteratorBuilder<T> |
IteratorBuilder.distinct() |
<V> IteratorBuilder<T> |
IteratorBuilder.distinct(Function<T,V> t) |
IteratorBuilder<T> |
IteratorBuilder.filter(Predicate<T> t) |
<V> IteratorBuilder<V> |
IteratorBuilder.flatMap(Function<T,Iterator<V>> fun) |
<V> IteratorBuilder<V> |
IteratorBuilder.map(Function<T,V> t) |
<V> IteratorBuilder<V> |
IteratorBuilder.map(Function<T,V> t,
String name) |
<V> IteratorBuilder<V> |
IteratorBuilder.mapMulti(Function<T,List<V>> t) |
IteratorBuilder<String> |
IteratorBuilder.notBlank() |
IteratorBuilder<T> |
IteratorBuilder.notNull() |
static <T> IteratorBuilder<T> |
IteratorBuilder.of(Iterator<T> t) |
static <T> IteratorBuilder<T> |
IteratorBuilder.ofArray(T... t) |
static <T> IteratorBuilder<T> |
IteratorBuilder.ofCoalesce(List<Iterator<T>> t) |
static IteratorBuilder<File> |
IteratorBuilder.ofFileDfs(File file) |
static IteratorBuilder<File> |
IteratorBuilder.ofFileList(File file) |
static IteratorBuilder<File> |
IteratorBuilder.ofFileList(File file,
boolean intcludeSelf) |
static <T> IteratorBuilder<T> |
IteratorBuilder.ofLazy(Iterable<T> t) |
static <T> IteratorBuilder<T> |
IteratorBuilder.ofLazyNamed(String name,
Iterable<T> t) |
static <T> IteratorBuilder<T> |
IteratorBuilder.ofList(List<Iterator<T>> t) |
IteratorBuilder<T> |
IteratorBuilder.safe(IteratorErrorHandlerType type) |
IteratorBuilder<T> |
IteratorBuilder.safeIgnore() |
IteratorBuilder<T> |
IteratorBuilder.safePospone() |
<V> IteratorBuilder<T> |
IteratorBuilder.sort(Comparator<T> t,
boolean removeDuplicates) |