All Methods Static Methods Concrete Methods
| Modifier and Type |
Method and Description |
static <T,U,V> Iterator<V> |
around(Iterable<? extends T> first,
Iterable<? extends U> second,
BiFunction<T,U,V> conversion) |
static <V,T> Iterator<T> |
around(Iterable<? extends V> iterable,
Function<V,T> conversion) |
static <T,U,V> Iterator<V> |
around(Iterator<? extends T> first,
Iterator<? extends U> second,
BiFunction<T,U,V> combineFirstAndSecond) |
static <V,T> Iterator<T> |
around(Iterator<? extends V> iterator,
Function<V,T> conversion) |
static <T> Iterable<T> |
around(Iterator<T> iterator) |
static <T> Iterator<T> |
empty() |
static <T> Iterator<T> |
join(Iterable<T> first,
Iterable<T> second) |
static <T> Iterator<T> |
join(Iterable<T> first,
T last) |
static <T> Iterator<T> |
join(Iterable<T> first,
T last1,
T last2) |
static <T> Iterator<T> |
join(Iterable<T> first,
T last1,
T last2,
T last3) |
static <T> Iterator<T> |
join(Iterable<T> first,
T last1,
T last2,
T last3,
T last4) |
static <T> Iterator<T> |
join(Iterator<T> first,
Iterator<T> second) |
static <T> Iterator<T> |
readOnly(Iterable<T> iterable) |
static <V,T> Iterator<T> |
readOnly(Iterable<V> iterable,
Function<V,T> conversion) |
static <V,T> Iterator<T> |
readOnly(Iterator<? extends V> iterator,
Function<V,T> conversion) |
static <T> Iterator<T> |
readOnly(Iterator<T> iterator) |
static <V,T> Iterable<T> |
readOnlyIterable(Iterable<? extends V> iterable,
Function<V,T> conversion) |
static <T> Iterable<T> |
readOnlyIterable(Iterable<T> iterable) |
static <T> Iterator<T> |
with(T value) |
static <T> Iterator<T> |
with(T[] values) |
static <T> Iterator<T> |
with(T value1,
T value2) |
static <T> Iterator<T> |
with(T value1,
T value2,
T value3) |
static <T> Iterator<T> |
with(T value1,
T value2,
T value3,
T... additional) |