All Methods Static Methods Concrete Methods
| Modifier and Type |
Method and Description |
static <T> NIterator<T> |
autoClosable(NIterator<T> t,
NRunnable close) |
static <T> NIterator<T> |
coalesce(List<NIterator<? extends T>> all) |
static <T> NIterator<T> |
coalesce(NIterator<? extends T>... all) |
static <T> NIterator<T> |
coalesce2(List<NIterator<T>> all) |
static <T> NIteratorFromJavaIterator<T> |
collector(Iterator<T> it) |
static <T> NIterator<T> |
concat(List<NIterator<? extends T>> all) |
static <T> NIterator<T> |
concat(NIterator<? extends T>... all) |
static <T> NIterator<T> |
concatLists(List<NIterator<? extends T>>... all) |
static <F,T> NIterator<T> |
convertNonNull(NIterator<F> from,
Function<F,T> converter,
String name) |
static <F,T> NIterator<F> |
distinct(NIterator<F> it,
Function<F,T> converter) |
static <T> NIterator<T> |
distinct(NIterator<T> it) |
static <T> boolean |
isNullOrEmpty(Iterator<T> t) |
static <T> NIterator<T> |
nonNull(NIterator<T> t) |
static <T> NIterator<T> |
nullifyIfEmpty(NIterator<T> other) |
static <T> NIterator<T> |
safe(NIteratorErrorHandlerType type,
NIterator<T> t) |
static <T> NIterator<T> |
safeIgnore(NIterator<T> t) |
static <T> NIterator<T> |
safePospone(NIterator<T> t) |
static <T> NIterator<T> |
sort(NIterator<T> it,
NComparator<T> c,
boolean removeDuplicates) |
static <T> List<T> |
toList(Iterator<T> it) |
static <T> Set<T> |
toSet(NIterator<T> it) |
static <T> Set<T> |
toTreeSet(NIterator<T> it,
NComparator<T> c) |