public final class Iterables
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static <T> com.gs.collections.api.bag.ImmutableBag<T> |
iBag() |
static <T> com.gs.collections.api.bag.ImmutableBag<T> |
iBag(T... elements) |
static <T> com.gs.collections.api.bag.ImmutableBag<T> |
iBag(T one) |
static <T> com.gs.collections.api.list.ImmutableList<T> |
iList() |
static <T> com.gs.collections.api.list.ImmutableList<T> |
iList(T... elements) |
static <T> com.gs.collections.api.list.ImmutableList<T> |
iList(T one) |
static <T> com.gs.collections.api.list.ImmutableList<T> |
iList(T one,
T two) |
static <T> com.gs.collections.api.list.ImmutableList<T> |
iList(T one,
T two,
T three) |
static <T> com.gs.collections.api.list.ImmutableList<T> |
iList(T one,
T two,
T three,
T four) |
static <T> com.gs.collections.api.list.ImmutableList<T> |
iList(T one,
T two,
T three,
T four,
T five) |
static <T> com.gs.collections.api.list.ImmutableList<T> |
iList(T one,
T two,
T three,
T four,
T five,
T six) |
static <T> com.gs.collections.api.list.ImmutableList<T> |
iList(T one,
T two,
T three,
T four,
T five,
T six,
T seven) |
static <T> com.gs.collections.api.list.ImmutableList<T> |
iList(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight) |
static <T> com.gs.collections.api.list.ImmutableList<T> |
iList(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine) |
static <T> com.gs.collections.api.list.ImmutableList<T> |
iList(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine,
T ten) |
static <K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
iMap() |
static <K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
iMap(K key,
V value) |
static <K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
iMap(K key1,
V value1,
K key2,
V value2) |
static <K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
iMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
static <K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
iMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
static <T> com.gs.collections.api.set.ImmutableSet<T> |
iSet() |
static <T> com.gs.collections.api.set.ImmutableSet<T> |
iSet(T... elements) |
static <T> com.gs.collections.api.set.ImmutableSet<T> |
iSet(T one) |
static <T> com.gs.collections.api.set.ImmutableSet<T> |
iSet(T one,
T two) |
static <T> com.gs.collections.api.set.ImmutableSet<T> |
iSet(T one,
T two,
T three) |
static <T> com.gs.collections.api.set.ImmutableSet<T> |
iSet(T one,
T two,
T three,
T four) |
static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> |
iSortedMap() |
static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> |
iSortedMap(java.util.Comparator<? super K> comparator) |
static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> |
iSortedMap(java.util.Comparator<? super K> comparator,
K key,
V value) |
static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> |
iSortedMap(java.util.Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2) |
static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> |
iSortedMap(java.util.Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> |
iSortedMap(java.util.Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> |
iSortedMap(K key,
V value) |
static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> |
iSortedMap(K key1,
V value1,
K key2,
V value2) |
static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> |
iSortedMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> |
iSortedMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
static <T> com.gs.collections.api.set.sorted.ImmutableSortedSet<T> |
iSortedSet() |
static <T> com.gs.collections.api.set.sorted.ImmutableSortedSet<T> |
iSortedSet(java.util.Comparator<? super T> comparator) |
static <T> com.gs.collections.api.set.sorted.ImmutableSortedSet<T> |
iSortedSet(java.util.Comparator<? super T> comparator,
T... elements) |
static <T> com.gs.collections.api.set.sorted.ImmutableSortedSet<T> |
iSortedSet(T... elements) |
static <T> com.gs.collections.api.bag.MutableBag<T> |
mBag() |
static <T> com.gs.collections.api.bag.MutableBag<T> |
mBag(T... elements) |
static <T> com.gs.collections.api.list.MutableList<T> |
mList() |
static <T> com.gs.collections.api.list.MutableList<T> |
mList(T... elements) |
static <K,V> com.gs.collections.api.map.MutableMap<K,V> |
mMap() |
static <K,V> com.gs.collections.api.map.MutableMap<K,V> |
mMap(K key,
V value) |
static <K,V> com.gs.collections.api.map.MutableMap<K,V> |
mMap(K key1,
V value1,
K key2,
V value2) |
static <K,V> com.gs.collections.api.map.MutableMap<K,V> |
mMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
static <K,V> com.gs.collections.api.map.MutableMap<K,V> |
mMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
static <T> com.gs.collections.api.set.MutableSet<T> |
mSet() |
static <T> com.gs.collections.api.set.MutableSet<T> |
mSet(T... elements) |
static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> |
mSortedMap() |
static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> |
mSortedMap(java.util.Comparator<? super K> comparator) |
static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> |
mSortedMap(java.util.Comparator<? super K> comparator,
K key,
V value) |
static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> |
mSortedMap(java.util.Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2) |
static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> |
mSortedMap(java.util.Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> |
mSortedMap(java.util.Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> |
mSortedMap(K key,
V value) |
static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> |
mSortedMap(K key1,
V value1,
K key2,
V value2) |
static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> |
mSortedMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> |
mSortedMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
static <T> com.gs.collections.api.set.sorted.MutableSortedSet<T> |
mSortedSet() |
static <T> com.gs.collections.api.set.sorted.MutableSortedSet<T> |
mSortedSet(java.util.Comparator<? super T> comparator) |
static <T> com.gs.collections.api.set.sorted.MutableSortedSet<T> |
mSortedSet(java.util.Comparator<? super T> comparator,
T... elements) |
static <T> com.gs.collections.api.set.sorted.MutableSortedSet<T> |
mSortedSet(T... elements) |
public static <T> com.gs.collections.api.list.MutableList<T> mList()
public static <T> com.gs.collections.api.list.MutableList<T> mList(T... elements)
public static <T> com.gs.collections.api.set.MutableSet<T> mSet()
public static <T> com.gs.collections.api.set.MutableSet<T> mSet(T... elements)
public static <T> com.gs.collections.api.bag.MutableBag<T> mBag()
public static <T> com.gs.collections.api.bag.MutableBag<T> mBag(T... elements)
public static <K,V> com.gs.collections.api.map.MutableMap<K,V> mMap()
public static <K,V> com.gs.collections.api.map.MutableMap<K,V> mMap(K key,
V value)
public static <K,V> com.gs.collections.api.map.MutableMap<K,V> mMap(K key1,
V value1,
K key2,
V value2)
public static <K,V> com.gs.collections.api.map.MutableMap<K,V> mMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
public static <K,V> com.gs.collections.api.map.MutableMap<K,V> mMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
public static <T> com.gs.collections.api.set.sorted.MutableSortedSet<T> mSortedSet()
public static <T> com.gs.collections.api.set.sorted.MutableSortedSet<T> mSortedSet(T... elements)
public static <T> com.gs.collections.api.set.sorted.MutableSortedSet<T> mSortedSet(java.util.Comparator<? super T> comparator)
public static <T> com.gs.collections.api.set.sorted.MutableSortedSet<T> mSortedSet(java.util.Comparator<? super T> comparator,
T... elements)
public static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> mSortedMap()
public static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> mSortedMap(K key,
V value)
public static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> mSortedMap(K key1,
V value1,
K key2,
V value2)
public static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> mSortedMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
public static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> mSortedMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
public static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> mSortedMap(java.util.Comparator<? super K> comparator)
public static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> mSortedMap(java.util.Comparator<? super K> comparator,
K key,
V value)
public static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> mSortedMap(java.util.Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2)
public static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> mSortedMap(java.util.Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
public static <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> mSortedMap(java.util.Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
public static <T> com.gs.collections.api.list.ImmutableList<T> iList()
public static <T> com.gs.collections.api.list.ImmutableList<T> iList(T one)
public static <T> com.gs.collections.api.list.ImmutableList<T> iList(T one,
T two)
public static <T> com.gs.collections.api.list.ImmutableList<T> iList(T one,
T two,
T three)
public static <T> com.gs.collections.api.list.ImmutableList<T> iList(T one,
T two,
T three,
T four)
public static <T> com.gs.collections.api.list.ImmutableList<T> iList(T one,
T two,
T three,
T four,
T five)
public static <T> com.gs.collections.api.list.ImmutableList<T> iList(T one,
T two,
T three,
T four,
T five,
T six)
public static <T> com.gs.collections.api.list.ImmutableList<T> iList(T one,
T two,
T three,
T four,
T five,
T six,
T seven)
public static <T> com.gs.collections.api.list.ImmutableList<T> iList(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight)
public static <T> com.gs.collections.api.list.ImmutableList<T> iList(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine)
public static <T> com.gs.collections.api.list.ImmutableList<T> iList(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine,
T ten)
public static <T> com.gs.collections.api.list.ImmutableList<T> iList(T... elements)
public static <T> com.gs.collections.api.set.ImmutableSet<T> iSet()
public static <T> com.gs.collections.api.set.ImmutableSet<T> iSet(T one)
public static <T> com.gs.collections.api.set.ImmutableSet<T> iSet(T one,
T two)
public static <T> com.gs.collections.api.set.ImmutableSet<T> iSet(T one,
T two,
T three)
public static <T> com.gs.collections.api.set.ImmutableSet<T> iSet(T one,
T two,
T three,
T four)
public static <T> com.gs.collections.api.set.ImmutableSet<T> iSet(T... elements)
public static <T> com.gs.collections.api.bag.ImmutableBag<T> iBag()
public static <T> com.gs.collections.api.bag.ImmutableBag<T> iBag(T one)
public static <T> com.gs.collections.api.bag.ImmutableBag<T> iBag(T... elements)
public static <K,V> com.gs.collections.api.map.ImmutableMap<K,V> iMap()
public static <K,V> com.gs.collections.api.map.ImmutableMap<K,V> iMap(K key,
V value)
public static <K,V> com.gs.collections.api.map.ImmutableMap<K,V> iMap(K key1,
V value1,
K key2,
V value2)
public static <K,V> com.gs.collections.api.map.ImmutableMap<K,V> iMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
public static <K,V> com.gs.collections.api.map.ImmutableMap<K,V> iMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
public static <T> com.gs.collections.api.set.sorted.ImmutableSortedSet<T> iSortedSet()
public static <T> com.gs.collections.api.set.sorted.ImmutableSortedSet<T> iSortedSet(T... elements)
public static <T> com.gs.collections.api.set.sorted.ImmutableSortedSet<T> iSortedSet(java.util.Comparator<? super T> comparator)
public static <T> com.gs.collections.api.set.sorted.ImmutableSortedSet<T> iSortedSet(java.util.Comparator<? super T> comparator,
T... elements)
public static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> iSortedMap()
public static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> iSortedMap(K key,
V value)
public static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> iSortedMap(K key1,
V value1,
K key2,
V value2)
public static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> iSortedMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
public static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> iSortedMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
public static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> iSortedMap(java.util.Comparator<? super K> comparator)
public static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> iSortedMap(java.util.Comparator<? super K> comparator,
K key,
V value)
public static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> iSortedMap(java.util.Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2)
public static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> iSortedMap(java.util.Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
public static <K,V> com.gs.collections.api.map.sorted.ImmutableSortedMap<K,V> iSortedMap(java.util.Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)