Uses of Interface
org.eclipse.collections.api.list.ImmutableList
-
Packages that use ImmutableList Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.factory.list This package contains factory API for creating instances of typeListIterable
.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.multimap.list This package contains interfaces forListMultimap
.org.eclipse.collections.api.partition.list This package contains interfaces forPartitionList
.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.primitive This package contains implementations of the primitive list interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.multimap.list This package contains implementations of theListMultimap
interface.org.eclipse.collections.impl.partition.list This package contains implementations of thePartitionList
interface.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.string.immutable org.eclipse.collections.impl.tuple -
-
Uses of ImmutableList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ImmutableList Modifier and Type Method Description default ImmutableList<T>
RichIterable. toImmutableList()
Converts the RichIterable to the default ImmutableList implementation.default ImmutableList<T>
RichIterable. toImmutableSortedList()
Converts the RichIterable to the default sorted ImmutableList implementation.default ImmutableList<T>
RichIterable. toImmutableSortedList(java.util.Comparator<? super T> comparator)
Converts the collection to an ImmutableList implementation and sorts it using the specified comparator.default <V extends java.lang.Comparable<? super V>>
ImmutableList<T>RichIterable. toImmutableSortedListBy(Function<? super T,? extends V> function)
Converts the collection to an ImmutableList implementation and sorts it based on the natural order of the attribute returned byfunction
. -
Uses of ImmutableList in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableList Modifier and Type Method Description ImmutableList<ObjectIntPair<T>>
ImmutableBag. bottomOccurrences(int count)
ImmutableList<ObjectIntPair<T>>
ImmutableBag. topOccurrences(int count)
-
Uses of ImmutableList in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableList Modifier and Type Method Description ImmutableList<BooleanIntPair>
ImmutableBooleanBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ImmutableList<ByteIntPair>
ImmutableByteBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ImmutableList<CharIntPair>
ImmutableCharBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ImmutableList<DoubleIntPair>
ImmutableDoubleBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ImmutableList<FloatIntPair>
ImmutableFloatBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ImmutableList<IntIntPair>
ImmutableIntBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ImmutableList<LongIntPair>
ImmutableLongBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ImmutableList<ShortIntPair>
ImmutableShortBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ImmutableList<BooleanIntPair>
ImmutableBooleanBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ImmutableList<ByteIntPair>
ImmutableByteBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ImmutableList<CharIntPair>
ImmutableCharBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ImmutableList<DoubleIntPair>
ImmutableDoubleBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ImmutableList<FloatIntPair>
ImmutableFloatBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ImmutableList<IntIntPair>
ImmutableIntBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ImmutableList<LongIntPair>
ImmutableLongBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ImmutableList<ShortIntPair>
ImmutableShortBag. topOccurrences(int count)
Returns thecount
most frequently occurring items. -
Uses of ImmutableList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableList Modifier and Type Method Description <V> ImmutableList<V>
ImmutableSortedBag. collect(Function<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ImmutableList<V>ImmutableSortedBag. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
default <V> ImmutableList<V>
ImmutableSortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableSortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableSortedBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
default <P,V>
ImmutableList<V>ImmutableSortedBag. flatCollectWith(Function2<? super T,? super P,? extends java.lang.Iterable<V>> function, P parameter)
<S> ImmutableList<Pair<T,S>>
ImmutableSortedBag. zip(java.lang.Iterable<S> that)
-
Uses of ImmutableList in org.eclipse.collections.api.factory.list
Methods in org.eclipse.collections.api.factory.list that return ImmutableList Modifier and Type Method Description <T> ImmutableList<T>
ImmutableListFactory. empty()
default <T> ImmutableList<T>
ImmutableListFactory. fromStream(java.util.stream.Stream<? extends T> stream)
<T> ImmutableList<T>
ImmutableListFactory. of()
Same asImmutableListFactory.empty()
.<T> ImmutableList<T>
ImmutableListFactory. of(T one)
Same asImmutableListFactory.with(Object)
.<T> ImmutableList<T>
ImmutableListFactory. of(T... items)
Same asImmutableListFactory.with(Object[])
.<T> ImmutableList<T>
ImmutableListFactory. of(T one, T two)
<T> ImmutableList<T>
ImmutableListFactory. of(T one, T two, T three)
<T> ImmutableList<T>
ImmutableListFactory. of(T one, T two, T three, T four)
<T> ImmutableList<T>
ImmutableListFactory. of(T one, T two, T three, T four, T five)
<T> ImmutableList<T>
ImmutableListFactory. of(T one, T two, T three, T four, T five, T six)
<T> ImmutableList<T>
ImmutableListFactory. of(T one, T two, T three, T four, T five, T six, T seven)
<T> ImmutableList<T>
ImmutableListFactory. of(T one, T two, T three, T four, T five, T six, T seven, T eight)
<T> ImmutableList<T>
ImmutableListFactory. of(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine)
<T> ImmutableList<T>
ImmutableListFactory. of(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine, T ten)
<T> ImmutableList<T>
ImmutableListFactory. ofAll(java.lang.Iterable<? extends T> items)
<T> ImmutableList<T>
ImmutableListFactory. with()
Same asImmutableListFactory.empty()
.<T> ImmutableList<T>
ImmutableListFactory. with(T one)
<T> ImmutableList<T>
ImmutableListFactory. with(T... items)
<T> ImmutableList<T>
ImmutableListFactory. with(T one, T two)
<T> ImmutableList<T>
ImmutableListFactory. with(T one, T two, T three)
<T> ImmutableList<T>
ImmutableListFactory. with(T one, T two, T three, T four)
<T> ImmutableList<T>
ImmutableListFactory. with(T one, T two, T three, T four, T five)
<T> ImmutableList<T>
ImmutableListFactory. with(T one, T two, T three, T four, T five, T six)
<T> ImmutableList<T>
ImmutableListFactory. with(T one, T two, T three, T four, T five, T six, T seven)
<T> ImmutableList<T>
ImmutableListFactory. with(T one, T two, T three, T four, T five, T six, T seven, T eight)
<T> ImmutableList<T>
ImmutableListFactory. with(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine)
<T> ImmutableList<T>
ImmutableListFactory. with(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine, T ten)
<T> ImmutableList<T>
ImmutableListFactory. withAll(java.lang.Iterable<? extends T> items)
default <T> ImmutableList<T>
ImmutableListFactory. withAllSorted(java.util.Comparator<? super T> comparator, RichIterable<? extends T> items)
default <T> ImmutableList<T>
ImmutableListFactory. withAllSorted(RichIterable<? extends T> items)
-
Uses of ImmutableList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableList Modifier and Type Method Description <V> ImmutableList<V>
ImmutableList. collect(Function<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ImmutableList<V>ImmutableList. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
default <V> ImmutableList<V>
ImmutableList. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
ImmutableList<T>
ImmutableList. distinct()
ImmutableList<T>
ImmutableList. distinct(HashingStrategy<? super T> hashingStrategy)
<V> ImmutableList<T>
ImmutableList. distinctBy(Function<? super T,? extends V> function)
ImmutableList<T>
ImmutableList. drop(int count)
ImmutableList<T>
ImmutableList. dropWhile(Predicate<? super T> predicate)
<V> ImmutableList<V>
ImmutableList. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
default <P,V>
ImmutableList<V>ImmutableList. flatCollectWith(Function2<? super T,? super P,? extends java.lang.Iterable<V>> function, P parameter)
ImmutableList<T>
ImmutableList. newWith(T element)
ImmutableList<T>
ImmutableList. newWithAll(java.lang.Iterable<? extends T> elements)
ImmutableList<T>
ImmutableList. newWithout(T element)
ImmutableList<T>
ImmutableList. newWithoutAll(java.lang.Iterable<? extends T> elements)
ImmutableList<T>
ImmutableList. reject(Predicate<? super T> predicate)
<P> ImmutableList<T>
ImmutableList. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
default ImmutableList<T>
ImmutableList. rejectWithIndex(ObjectIntPredicate<? super T> predicate)
Returns a new ImmutableList with all elements of the collection that return false when evaluating the specified predicate which is supplied each element and its relative index.ImmutableList<T>
ImmutableList. select(Predicate<? super T> predicate)
<S> ImmutableList<S>
ImmutableList. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableList<T>
ImmutableList. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
default ImmutableList<T>
ImmutableList. selectWithIndex(ObjectIntPredicate<? super T> predicate)
Returns a new ImmutableList with all elements of the collection that return true when evaluating the specified predicate which is supplied each element and its relative index.ImmutableList<T>
ImmutableList. subList(int fromIndex, int toIndex)
ImmutableList<T>
ImmutableList. take(int count)
ImmutableList<T>
ImmutableList. takeWhile(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableList. tap(Procedure<? super T> procedure)
ImmutableList<T>
ListIterable. toImmutable()
Converts the ListIterable to an immutable implementation.default ImmutableList<T>
MutableList. toImmutable()
Returns an immutable copy of this list.default ImmutableList<T>
ImmutableList. toImmutableList()
Overrides toImmutableList in RichIterable to return this.default ImmutableList<T>
MutableList. toImmutableList()
Converts the MutableList to the default ImmutableList implementation.ImmutableList<T>
ImmutableList. toReversed()
<S> ImmutableList<Pair<T,S>>
ImmutableList. zip(java.lang.Iterable<S> that)
ImmutableList<Pair<T,java.lang.Integer>>
ImmutableList. zipWithIndex()
-
Uses of ImmutableList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return ImmutableList Modifier and Type Method Description <V> ImmutableList<V>
ImmutableBooleanList. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableByteList. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableCharList. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableDoubleList. collect(DoubleToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableFloatList. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableIntList. collect(IntToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableLongList. collect(LongToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableShortList. collect(ShortToObjectFunction<? extends V> function)
default <V> ImmutableList<V>
ImmutableBooleanList. collectWithIndex(BooleanIntToObjectFunction<? extends V> function)
Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> ImmutableList<V>
ImmutableByteList. collectWithIndex(ByteIntToObjectFunction<? extends V> function)
Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> ImmutableList<V>
ImmutableCharList. collectWithIndex(CharIntToObjectFunction<? extends V> function)
Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> ImmutableList<V>
ImmutableDoubleList. collectWithIndex(DoubleIntToObjectFunction<? extends V> function)
Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> ImmutableList<V>
ImmutableFloatList. collectWithIndex(FloatIntToObjectFunction<? extends V> function)
Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> ImmutableList<V>
ImmutableIntList. collectWithIndex(IntIntToObjectFunction<? extends V> function)
Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> ImmutableList<V>
ImmutableLongList. collectWithIndex(LongIntToObjectFunction<? extends V> function)
Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> ImmutableList<V>
ImmutableShortList. collectWithIndex(ShortIntToObjectFunction<? extends V> function)
Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.default <T> ImmutableList<BooleanObjectPair<T>>
ImmutableBooleanList. zip(java.lang.Iterable<T> iterable)
Returns anImmutableList
formed from thisImmutableBooleanList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<ByteObjectPair<T>>
ImmutableByteList. zip(java.lang.Iterable<T> iterable)
Returns anImmutableList
formed from thisImmutableByteList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<CharObjectPair<T>>
ImmutableCharList. zip(java.lang.Iterable<T> iterable)
Returns anImmutableList
formed from thisImmutableCharList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<DoubleObjectPair<T>>
ImmutableDoubleList. zip(java.lang.Iterable<T> iterable)
Returns anImmutableList
formed from thisImmutableDoubleList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<FloatObjectPair<T>>
ImmutableFloatList. zip(java.lang.Iterable<T> iterable)
Returns anImmutableList
formed from thisImmutableFloatList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<IntObjectPair<T>>
ImmutableIntList. zip(java.lang.Iterable<T> iterable)
Returns anImmutableList
formed from thisImmutableIntList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<LongObjectPair<T>>
ImmutableLongList. zip(java.lang.Iterable<T> iterable)
Returns anImmutableList
formed from thisImmutableLongList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<ShortObjectPair<T>>
ImmutableShortList. zip(java.lang.Iterable<T> iterable)
Returns anImmutableList
formed from thisImmutableShortList
and aListIterable
by combining corresponding elements in pairs.default ImmutableList<BooleanBooleanPair>
ImmutableBooleanList. zipBoolean(BooleanIterable iterable)
Returns anImmutableList
formed from thisImmutableBooleanList
and anotherBooleanList
by combining corresponding elements in pairs.default ImmutableList<ByteBytePair>
ImmutableByteList. zipByte(ByteIterable iterable)
Returns anImmutableList
formed from thisImmutableByteList
and anotherByteList
by combining corresponding elements in pairs.default ImmutableList<CharCharPair>
ImmutableCharList. zipChar(CharIterable iterable)
Returns anImmutableList
formed from thisImmutableCharList
and anotherCharList
by combining corresponding elements in pairs.default ImmutableList<DoubleDoublePair>
ImmutableDoubleList. zipDouble(DoubleIterable iterable)
Returns anImmutableList
formed from thisImmutableDoubleList
and anotherDoubleList
by combining corresponding elements in pairs.default ImmutableList<FloatFloatPair>
ImmutableFloatList. zipFloat(FloatIterable iterable)
Returns anImmutableList
formed from thisImmutableFloatList
and anotherFloatList
by combining corresponding elements in pairs.default ImmutableList<IntIntPair>
ImmutableIntList. zipInt(IntIterable iterable)
Returns anImmutableList
formed from thisImmutableIntList
and anotherIntList
by combining corresponding elements in pairs.default ImmutableList<LongLongPair>
ImmutableLongList. zipLong(LongIterable iterable)
Returns anImmutableList
formed from thisImmutableLongList
and anotherLongList
by combining corresponding elements in pairs.default ImmutableList<ShortShortPair>
ImmutableShortList. zipShort(ShortIterable iterable)
Returns anImmutableList
formed from thisImmutableShortList
and anotherShortList
by combining corresponding elements in pairs. -
Uses of ImmutableList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableList Modifier and Type Method Description <VV> ImmutableList<VV>
ImmutableOrderedMap. collect(Function<? super V,? extends VV> function)
<V1> ImmutableList<V1>
ImmutableOrderedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)
<P,V1>
ImmutableList<V1>ImmutableOrderedMap. collectWith(Function2<? super V,? super P,? extends V1> function, P parameter)
ImmutableList<V>
ImmutableOrderedMap. distinct()
<V1> ImmutableList<V1>
ImmutableOrderedMap. flatCollect(Function<? super V,? extends java.lang.Iterable<V1>> function)
default <P,V1>
ImmutableList<V1>ImmutableOrderedMap. flatCollectWith(Function2<? super V,? super P,? extends java.lang.Iterable<V1>> function, P parameter)
ImmutableList<V>
ImmutableOrderedMap. reject(Predicate<? super V> predicate)
<P> ImmutableList<V>
ImmutableOrderedMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)
ImmutableList<V>
ImmutableOrderedMap. select(Predicate<? super V> predicate)
<S> ImmutableList<S>
ImmutableOrderedMap. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableList<V>
ImmutableOrderedMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)
<S> ImmutableList<Pair<V,S>>
ImmutableOrderedMap. zip(java.lang.Iterable<S> that)
ImmutableList<Pair<V,java.lang.Integer>>
ImmutableOrderedMap. zipWithIndex()
-
Uses of ImmutableList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ImmutableList Modifier and Type Method Description <R> ImmutableList<R>
ImmutableSortedMap. collect(Function<? super V,? extends R> function)
<R> ImmutableList<R>
ImmutableSortedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
<P,VV>
ImmutableList<VV>ImmutableSortedMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)
default <R> ImmutableList<R>
ImmutableSortedMap. collectWithIndex(ObjectIntToObjectFunction<? super V,? extends R> function)
<R> ImmutableList<R>
ImmutableSortedMap. flatCollect(Function<? super V,? extends java.lang.Iterable<R>> function)
default <P,R>
ImmutableList<R>ImmutableSortedMap. flatCollectWith(Function2<? super V,? super P,? extends java.lang.Iterable<R>> function, P parameter)
ImmutableList<V>
ImmutableSortedMap. reject(Predicate<? super V> predicate)
<P> ImmutableList<V>
ImmutableSortedMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)
ImmutableList<V>
ImmutableSortedMap. select(Predicate<? super V> predicate)
<S> ImmutableList<S>
ImmutableSortedMap. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableList<V>
ImmutableSortedMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)
<S> ImmutableList<Pair<V,S>>
ImmutableSortedMap. zip(java.lang.Iterable<S> that)
ImmutableList<Pair<V,java.lang.Integer>>
ImmutableSortedMap. zipWithIndex()
-
Uses of ImmutableList in org.eclipse.collections.api.multimap.list
Methods in org.eclipse.collections.api.multimap.list that return ImmutableList Modifier and Type Method Description ImmutableList<V>
ImmutableListMultimap. get(K key)
Method parameters in org.eclipse.collections.api.multimap.list with type arguments of type ImmutableList Modifier and Type Method Description void
ImmutableListMultimap. forEachKeyImmutableList(Procedure2<? super K,? super ImmutableList<V>> procedure)
-
Uses of ImmutableList in org.eclipse.collections.api.partition.list
Methods in org.eclipse.collections.api.partition.list that return ImmutableList Modifier and Type Method Description ImmutableList<T>
PartitionImmutableList. getRejected()
ImmutableList<T>
PartitionImmutableList. getSelected()
-
Uses of ImmutableList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableList Modifier and Type Method Description <V> ImmutableList<V>
ImmutableSortedSet. collect(Function<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ImmutableList<V>ImmutableSortedSet. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
default <V> ImmutableList<V>
ImmutableSortedSet. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableSortedSet. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
default <P,V>
ImmutableList<V>ImmutableSortedSet. flatCollectWith(Function2<? super T,? super P,? extends java.lang.Iterable<V>> function, P parameter)
<S> ImmutableList<Pair<T,S>>
ImmutableSortedSet. zip(java.lang.Iterable<S> that)
-
Uses of ImmutableList in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableList Modifier and Type Method Description ImmutableList<ObjectIntPair<T>>
AbstractImmutableBag. bottomOccurrences(int n)
ImmutableList<ObjectIntPair<T>>
AbstractImmutableBag. topOccurrences(int n)
-
Uses of ImmutableList in org.eclipse.collections.impl.bag.immutable.primitive
-
Uses of ImmutableList in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableList Modifier and Type Method Description ImmutableList<ObjectIntPair<T>>
AbstractImmutableSortedBag. bottomOccurrences(int n)
<V> ImmutableList<V>
AbstractImmutableSortedBag. collect(Function<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableEmptySortedBag. collect(Function<? super T,? extends V> function)
<V> ImmutableList<V>
AbstractImmutableSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ImmutableList<V>AbstractImmutableSortedBag. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<V> ImmutableList<V>
ImmutableEmptySortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableSortedBagImpl. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableList<V>
AbstractImmutableSortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableEmptySortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableList<V>
AbstractImmutableSortedBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
ImmutableList<ObjectIntPair<T>>
AbstractImmutableSortedBag. topOccurrences(int n)
<S> ImmutableList<Pair<T,S>>
AbstractImmutableSortedBag. zip(java.lang.Iterable<S> that)
-
Uses of ImmutableList in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return ImmutableList Modifier and Type Method Description ImmutableList<T>
AbstractSynchronizedRichIterable. toImmutableList()
ImmutableList<T>
AbstractSynchronizedRichIterable. toImmutableSortedList()
ImmutableList<T>
AbstractSynchronizedRichIterable. toImmutableSortedList(java.util.Comparator<? super T> comparator)
-
Uses of ImmutableList in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return ImmutableList Modifier and Type Method Description ImmutableList<T>
AbstractMultiReaderMutableCollection. toImmutableList()
ImmutableList<T>
AbstractMultiReaderMutableCollection. toImmutableSortedList()
ImmutableList<T>
AbstractMultiReaderMutableCollection. toImmutableSortedList(java.util.Comparator<? super T> comparator)
<V extends java.lang.Comparable<? super V>>
ImmutableList<T>AbstractMultiReaderMutableCollection. toImmutableSortedListBy(Function<? super T,? extends V> function)
-
Uses of ImmutableList in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type ImmutableList Modifier and Type Method Description static <T> java.util.stream.Collector<T,?,ImmutableList<T>>
Collectors2. toImmutableList()
Returns the elements as an ImmutableList.static <T> java.util.stream.Collector<T,?,ImmutableList<T>>
Collectors2. toImmutableSortedList()
Returns the elements as an ImmutableList that has been sorted.static <T> java.util.stream.Collector<T,?,ImmutableList<T>>
Collectors2. toImmutableSortedList(java.util.Comparator<? super T> comparator)
Returns the elements as an ImmutableList that has been sorted using the specified comparator.static <T,V extends java.lang.Comparable<? super V>>
java.util.stream.Collector<T,?,ImmutableList<T>>Collectors2. toImmutableSortedListBy(Function<? super T,? extends V> function)
Returns the elements as a ImmutableList that has been sorted using the specified comparator. -
Uses of ImmutableList in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return ImmutableList Modifier and Type Method Description static <T> ImmutableList<T>
Iterables. iList()
static <T> ImmutableList<T>
Iterables. iList(T one)
static <T> ImmutableList<T>
Iterables. iList(T... elements)
static <T> ImmutableList<T>
Iterables. iList(T one, T two)
static <T> ImmutableList<T>
Iterables. iList(T one, T two, T three)
static <T> ImmutableList<T>
Iterables. iList(T one, T two, T three, T four)
static <T> ImmutableList<T>
Iterables. iList(T one, T two, T three, T four, T five)
static <T> ImmutableList<T>
Iterables. iList(T one, T two, T three, T four, T five, T six)
static <T> ImmutableList<T>
Iterables. iList(T one, T two, T three, T four, T five, T six, T seven)
static <T> ImmutableList<T>
Iterables. iList(T one, T two, T three, T four, T five, T six, T seven, T eight)
static <T> ImmutableList<T>
Iterables. iList(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine)
static <T> ImmutableList<T>
Iterables. iList(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine, T ten)
-
Uses of ImmutableList in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed that return ImmutableList Modifier and Type Method Description ImmutableList<T>
EmptyList. toImmutable()
-
Uses of ImmutableList in org.eclipse.collections.impl.list.immutable
Classes in org.eclipse.collections.impl.list.immutable that implement ImmutableList Modifier and Type Class Description (package private) class
AbstractImmutableList<T>
This class is the parent class for all ImmutableLists.protected static class
AbstractImmutableList.ImmutableSubList<T>
(package private) class
ImmutableArrayList<T>
An ImmutableArrayList wraps a Java array, but it cannot be modified after creation.(package private) class
ImmutableDecapletonList<T>
This is a ten element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six, seven, eight, nine, ten) method.(package private) class
ImmutableDoubletonList<T>
This is a two element immutable List which is created by calling Immutable.newListWith(one, two) method.(package private) class
ImmutableEmptyList<T>
This is a zero elementImmutableList
which is created by calling the Lists.immutable.empty() method.(package private) class
ImmutableNonupletonList<T>
This is a nine element immutable List which is created by calling Lists.immutable.with(one, two, three, four, five, six, seven, eight, nine) method.(package private) class
ImmutableOctupletonList<T>
This is an eight element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six, seven, eight) method.(package private) class
ImmutableQuadrupletonList<T>
This is a four element immutable List which is created by calling Immutable.newListWith(one, two, three, four) method.(package private) class
ImmutableQuintupletonList<T>
This is a five element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five) method.(package private) class
ImmutableSeptupletonList<T>
This is a seven element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six, seven) method.(package private) class
ImmutableSextupletonList<T>
This is a six element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six) method.(package private) class
ImmutableSingletonList<T>
This is a single element immutable List which is created by calling Immutable.newListWith(one) method.(package private) class
ImmutableTripletonList<T>
This is a three element immutable List which is created by calling Immutable.newListWith(one, two, three) method.Fields in org.eclipse.collections.impl.list.immutable declared as ImmutableList Modifier and Type Field Description (package private) static ImmutableList<?>
ImmutableEmptyList. INSTANCE
private ImmutableList<T>
AbstractImmutableList.ImmutableSubList. original
Methods in org.eclipse.collections.impl.list.immutable that return ImmutableList Modifier and Type Method Description <V> ImmutableList<V>
AbstractImmutableList. collect(Function<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableArrayList. collect(Function<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableEmptyList. collect(Function<? super T,? extends V> function)
<V> ImmutableList<V>
AbstractImmutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableArrayList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableEmptyList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ImmutableList<V>AbstractImmutableList. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<P,V>
ImmutableList<V>ImmutableArrayList. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<V> ImmutableList<V>
ImmutableArrayList. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
ImmutableList<T>
AbstractImmutableList. distinct()
ImmutableList<T>
AbstractImmutableList. distinct(HashingStrategy<? super T> hashingStrategy)
<V> ImmutableList<T>
AbstractImmutableList. distinctBy(Function<? super T,? extends V> function)
ImmutableList<T>
AbstractImmutableList. drop(int count)
ImmutableList<T>
ImmutableArrayList. drop(int count)
ImmutableList<T>
ImmutableEmptyList. drop(int count)
ImmutableList<T>
AbstractImmutableList. dropWhile(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableArrayList. dropWhile(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableEmptyList. dropWhile(Predicate<? super T> predicate)
<T> ImmutableList<T>
ImmutableListFactoryImpl. empty()
<V> ImmutableList<V>
AbstractImmutableList. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ImmutableList<V>
ImmutableArrayList. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ImmutableList<V>
ImmutableEmptyList. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
ImmutableList<T>
AbstractImmutableList.ImmutableSubList. newWith(T newItem)
ImmutableList<T>
ImmutableArrayList. newWith(T newItem)
ImmutableList<T>
ImmutableDecapletonList. newWith(T newItem)
ImmutableList<T>
ImmutableDoubletonList. newWith(T newItem)
ImmutableList<T>
ImmutableEmptyList. newWith(T newItem)
ImmutableList<T>
ImmutableNonupletonList. newWith(T newItem)
ImmutableList<T>
ImmutableOctupletonList. newWith(T newItem)
ImmutableList<T>
ImmutableQuadrupletonList. newWith(T newItem)
ImmutableList<T>
ImmutableQuintupletonList. newWith(T newItem)
ImmutableList<T>
ImmutableSeptupletonList. newWith(T newItem)
ImmutableList<T>
ImmutableSextupletonList. newWith(T newItem)
ImmutableList<T>
ImmutableSingletonList. newWith(T newItem)
ImmutableList<T>
ImmutableTripletonList. newWith(T newItem)
ImmutableList<T>
AbstractImmutableList. newWithAll(java.lang.Iterable<? extends T> elements)
ImmutableList<T>
AbstractImmutableList. newWithout(T element)
ImmutableList<T>
ImmutableEmptyList. newWithout(T element)
ImmutableList<T>
AbstractImmutableList. newWithoutAll(java.lang.Iterable<? extends T> elements)
ImmutableList<T>
ImmutableEmptyList. newWithoutAll(java.lang.Iterable<? extends T> elements)
<T> ImmutableList<T>
ImmutableListFactoryImpl. of()
<T> ImmutableList<T>
ImmutableListFactoryImpl. of(T one)
<T> ImmutableList<T>
ImmutableListFactoryImpl. of(T... items)
<T> ImmutableList<T>
ImmutableListFactoryImpl. of(T one, T two)
<T> ImmutableList<T>
ImmutableListFactoryImpl. of(T one, T two, T three)
<T> ImmutableList<T>
ImmutableListFactoryImpl. of(T one, T two, T three, T four)
<T> ImmutableList<T>
ImmutableListFactoryImpl. of(T one, T two, T three, T four, T five)
<T> ImmutableList<T>
ImmutableListFactoryImpl. of(T one, T two, T three, T four, T five, T six)
<T> ImmutableList<T>
ImmutableListFactoryImpl. of(T one, T two, T three, T four, T five, T six, T seven)
<T> ImmutableList<T>
ImmutableListFactoryImpl. of(T one, T two, T three, T four, T five, T six, T seven, T eight)
<T> ImmutableList<T>
ImmutableListFactoryImpl. of(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine)
<T> ImmutableList<T>
ImmutableListFactoryImpl. of(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine, T ten)
<T> ImmutableList<T>
ImmutableListFactoryImpl. ofAll(java.lang.Iterable<? extends T> items)
ImmutableList<T>
AbstractImmutableList. reject(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableArrayList. reject(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableEmptyList. reject(Predicate<? super T> predicate)
<P> ImmutableList<T>
AbstractImmutableList. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ImmutableList<T>
ImmutableArrayList. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableList<T>
ImmutableArrayList. rejectWithIndex(ObjectIntPredicate<? super T> predicate)
ImmutableList<T>
AbstractImmutableList. select(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableArrayList. select(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableEmptyList. select(Predicate<? super T> predicate)
<S> ImmutableList<S>
AbstractImmutableList. selectInstancesOf(java.lang.Class<S> clazz)
<S> ImmutableList<S>
ImmutableArrayList. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableList<T>
AbstractImmutableList. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ImmutableList<T>
ImmutableArrayList. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableList<T>
ImmutableArrayList. selectWithIndex(ObjectIntPredicate<? super T> predicate)
ImmutableList<T>
AbstractImmutableList. take(int count)
ImmutableList<T>
ImmutableArrayList. take(int count)
ImmutableList<T>
ImmutableEmptyList. take(int count)
ImmutableList<T>
AbstractImmutableList. takeWhile(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableArrayList. takeWhile(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableEmptyList. takeWhile(Predicate<? super T> predicate)
ImmutableList<T>
AbstractImmutableList. tap(Procedure<? super T> procedure)
ImmutableList<T>
ImmutableEmptyList. tap(Procedure<? super T> procedure)
ImmutableList<T>
AbstractImmutableList. toImmutable()
ImmutableList<T>
AbstractImmutableList. toReversed()
ImmutableList<T>
ImmutableSingletonList. toReversed()
<T> ImmutableList<T>
ImmutableListFactoryImpl. with()
<T> ImmutableList<T>
ImmutableListFactoryImpl. with(T one)
<T> ImmutableList<T>
ImmutableListFactoryImpl. with(T... items)
<T> ImmutableList<T>
ImmutableListFactoryImpl. with(T one, T two)
<T> ImmutableList<T>
ImmutableListFactoryImpl. with(T one, T two, T three)
<T> ImmutableList<T>
ImmutableListFactoryImpl. with(T one, T two, T three, T four)
<T> ImmutableList<T>
ImmutableListFactoryImpl. with(T one, T two, T three, T four, T five)
<T> ImmutableList<T>
ImmutableListFactoryImpl. with(T one, T two, T three, T four, T five, T six)
<T> ImmutableList<T>
ImmutableListFactoryImpl. with(T one, T two, T three, T four, T five, T six, T seven)
<T> ImmutableList<T>
ImmutableListFactoryImpl. with(T one, T two, T three, T four, T five, T six, T seven, T eight)
<T> ImmutableList<T>
ImmutableListFactoryImpl. with(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine)
<T> ImmutableList<T>
ImmutableListFactoryImpl. with(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine, T ten)
<T> ImmutableList<T>
ImmutableListFactoryImpl. withAll(java.lang.Iterable<? extends T> items)
<T> ImmutableList<T>
ImmutableListFactoryImpl. withAllSorted(java.util.Comparator<? super T> comparator, RichIterable<? extends T> items)
<T> ImmutableList<T>
ImmutableListFactoryImpl. withAllSorted(RichIterable<? extends T> items)
private <T> ImmutableList<T>
ImmutableListFactoryImpl. withList(java.util.List<T> items)
<S> ImmutableList<Pair<T,S>>
AbstractImmutableList. zip(java.lang.Iterable<S> that)
<S> ImmutableList<Pair<T,S>>
ImmutableEmptyList. zip(java.lang.Iterable<S> that)
ImmutableList<Pair<T,java.lang.Integer>>
AbstractImmutableList. zipWithIndex()
ImmutableList<Pair<T,java.lang.Integer>>
ImmutableEmptyList. zipWithIndex()
Constructors in org.eclipse.collections.impl.list.immutable with parameters of type ImmutableList Constructor Description ImmutableSubList(ImmutableList<T> list, int fromIndex, int toIndex)
-
Uses of ImmutableList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableList Modifier and Type Method Description <V> ImmutableList<V>
ImmutableBooleanArrayList. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableBooleanEmptyList. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableBooleanSingletonList. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableByteArrayList. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableByteEmptyList. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableByteSingletonList. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableCharArrayList. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableCharEmptyList. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableCharSingletonList. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableDoubleArrayList. collect(DoubleToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableDoubleEmptyList. collect(DoubleToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableDoubleSingletonList. collect(DoubleToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableFloatArrayList. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableFloatEmptyList. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableFloatSingletonList. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableIntArrayList. collect(IntToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableIntEmptyList. collect(IntToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableIntSingletonList. collect(IntToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableLongArrayList. collect(LongToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableLongEmptyList. collect(LongToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableLongSingletonList. collect(LongToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableShortArrayList. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableShortEmptyList. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableShortSingletonList. collect(ShortToObjectFunction<? extends V> function)
<T> ImmutableList<BooleanObjectPair<T>>
ImmutableBooleanEmptyList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<BooleanObjectPair<T>>
ImmutableBooleanSingletonList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<ByteObjectPair<T>>
ImmutableByteArrayList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<ByteObjectPair<T>>
ImmutableByteEmptyList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<ByteObjectPair<T>>
ImmutableByteSingletonList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<CharObjectPair<T>>
ImmutableCharArrayList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<CharObjectPair<T>>
ImmutableCharEmptyList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<CharObjectPair<T>>
ImmutableCharSingletonList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<DoubleObjectPair<T>>
ImmutableDoubleArrayList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<DoubleObjectPair<T>>
ImmutableDoubleEmptyList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<DoubleObjectPair<T>>
ImmutableDoubleSingletonList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<FloatObjectPair<T>>
ImmutableFloatArrayList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<FloatObjectPair<T>>
ImmutableFloatEmptyList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<FloatObjectPair<T>>
ImmutableFloatSingletonList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<IntObjectPair<T>>
ImmutableIntArrayList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<IntObjectPair<T>>
ImmutableIntEmptyList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<IntObjectPair<T>>
ImmutableIntSingletonList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<LongObjectPair<T>>
ImmutableLongArrayList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<LongObjectPair<T>>
ImmutableLongEmptyList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<LongObjectPair<T>>
ImmutableLongSingletonList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<ShortObjectPair<T>>
ImmutableShortArrayList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<ShortObjectPair<T>>
ImmutableShortEmptyList. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<ShortObjectPair<T>>
ImmutableShortSingletonList. zip(java.lang.Iterable<T> iterable)
ImmutableList<BooleanBooleanPair>
ImmutableBooleanEmptyList. zipBoolean(BooleanIterable iterable)
ImmutableList<BooleanBooleanPair>
ImmutableBooleanSingletonList. zipBoolean(BooleanIterable iterable)
ImmutableList<ByteBytePair>
ImmutableByteArrayList. zipByte(ByteIterable iterable)
ImmutableList<ByteBytePair>
ImmutableByteEmptyList. zipByte(ByteIterable iterable)
ImmutableList<ByteBytePair>
ImmutableByteSingletonList. zipByte(ByteIterable iterable)
ImmutableList<CharCharPair>
ImmutableCharArrayList. zipChar(CharIterable iterable)
ImmutableList<CharCharPair>
ImmutableCharEmptyList. zipChar(CharIterable iterable)
ImmutableList<CharCharPair>
ImmutableCharSingletonList. zipChar(CharIterable iterable)
ImmutableList<DoubleDoublePair>
ImmutableDoubleArrayList. zipDouble(DoubleIterable iterable)
ImmutableList<DoubleDoublePair>
ImmutableDoubleEmptyList. zipDouble(DoubleIterable iterable)
ImmutableList<DoubleDoublePair>
ImmutableDoubleSingletonList. zipDouble(DoubleIterable iterable)
ImmutableList<FloatFloatPair>
ImmutableFloatArrayList. zipFloat(FloatIterable iterable)
ImmutableList<FloatFloatPair>
ImmutableFloatEmptyList. zipFloat(FloatIterable iterable)
ImmutableList<FloatFloatPair>
ImmutableFloatSingletonList. zipFloat(FloatIterable iterable)
ImmutableList<IntIntPair>
ImmutableIntArrayList. zipInt(IntIterable iterable)
ImmutableList<IntIntPair>
ImmutableIntEmptyList. zipInt(IntIterable iterable)
ImmutableList<IntIntPair>
ImmutableIntSingletonList. zipInt(IntIterable iterable)
ImmutableList<LongLongPair>
ImmutableLongArrayList. zipLong(LongIterable iterable)
ImmutableList<LongLongPair>
ImmutableLongEmptyList. zipLong(LongIterable iterable)
ImmutableList<LongLongPair>
ImmutableLongSingletonList. zipLong(LongIterable iterable)
ImmutableList<ShortShortPair>
ImmutableShortArrayList. zipShort(ShortIterable iterable)
ImmutableList<ShortShortPair>
ImmutableShortEmptyList. zipShort(ShortIterable iterable)
ImmutableList<ShortShortPair>
ImmutableShortSingletonList. zipShort(ShortIterable iterable)
-
Uses of ImmutableList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return ImmutableList Modifier and Type Method Description ImmutableList<T>
ListAdapter. toImmutable()
ImmutableList<T>
MultiReaderFastList. toImmutable()
ImmutableList<T>
MultiReaderFastList.UntouchableMutableList. toImmutable()
ImmutableList<T>
RandomAccessListAdapter. toImmutable()
ImmutableList<T>
SynchronizedMutableList. toImmutable()
ImmutableList<T>
UnmodifiableMutableList. toImmutable()
-
Uses of ImmutableList in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive that return ImmutableList Modifier and Type Method Description <V> ImmutableList<V>
IntInterval. collect(IntToObjectFunction<? extends V> function)
<V> ImmutableList<V>
LongInterval. collect(LongToObjectFunction<? extends V> function)
<T> ImmutableList<IntObjectPair<T>>
IntInterval. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<LongObjectPair<T>>
LongInterval. zip(java.lang.Iterable<T> iterable)
ImmutableList<IntIntPair>
IntInterval. zipInt(IntIterable iterable)
ImmutableList<LongLongPair>
LongInterval. zipLong(LongIterable iterable)
-
Uses of ImmutableList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableList Modifier and Type Method Description ImmutableList<V>
SynchronizedByteObjectMap. toImmutableList()
ImmutableList<V>
SynchronizedCharObjectMap. toImmutableList()
ImmutableList<V>
SynchronizedDoubleObjectMap. toImmutableList()
ImmutableList<V>
SynchronizedFloatObjectMap. toImmutableList()
ImmutableList<V>
SynchronizedIntObjectMap. toImmutableList()
ImmutableList<V>
SynchronizedLongObjectMap. toImmutableList()
ImmutableList<V>
SynchronizedShortObjectMap. toImmutableList()
ImmutableList<V>
SynchronizedByteObjectMap. toImmutableSortedList()
ImmutableList<V>
SynchronizedByteObjectMap. toImmutableSortedList(java.util.Comparator<? super V> comparator)
ImmutableList<V>
SynchronizedCharObjectMap. toImmutableSortedList()
ImmutableList<V>
SynchronizedCharObjectMap. toImmutableSortedList(java.util.Comparator<? super V> comparator)
ImmutableList<V>
SynchronizedDoubleObjectMap. toImmutableSortedList()
ImmutableList<V>
SynchronizedDoubleObjectMap. toImmutableSortedList(java.util.Comparator<? super V> comparator)
ImmutableList<V>
SynchronizedFloatObjectMap. toImmutableSortedList()
ImmutableList<V>
SynchronizedFloatObjectMap. toImmutableSortedList(java.util.Comparator<? super V> comparator)
ImmutableList<V>
SynchronizedIntObjectMap. toImmutableSortedList()
ImmutableList<V>
SynchronizedIntObjectMap. toImmutableSortedList(java.util.Comparator<? super V> comparator)
ImmutableList<V>
SynchronizedLongObjectMap. toImmutableSortedList()
ImmutableList<V>
SynchronizedLongObjectMap. toImmutableSortedList(java.util.Comparator<? super V> comparator)
ImmutableList<V>
SynchronizedShortObjectMap. toImmutableSortedList()
ImmutableList<V>
SynchronizedShortObjectMap. toImmutableSortedList(java.util.Comparator<? super V> comparator)
<VV extends java.lang.Comparable<? super VV>>
ImmutableList<V>SynchronizedByteObjectMap. toImmutableSortedListBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableList<V>SynchronizedCharObjectMap. toImmutableSortedListBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableList<V>SynchronizedDoubleObjectMap. toImmutableSortedListBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableList<V>SynchronizedFloatObjectMap. toImmutableSortedListBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableList<V>SynchronizedIntObjectMap. toImmutableSortedListBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableList<V>SynchronizedLongObjectMap. toImmutableSortedListBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableList<V>SynchronizedShortObjectMap. toImmutableSortedListBy(Function<? super V,? extends VV> function)
-
Uses of ImmutableList in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableList Modifier and Type Method Description <R> ImmutableList<R>
AbstractImmutableSortedMap. collect(Function<? super V,? extends R> function)
<R> ImmutableList<R>
AbstractImmutableSortedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
<P,VV>
ImmutableList<VV>AbstractImmutableSortedMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)
ImmutableList<V>
AbstractImmutableSortedMap. distinct()
<R> ImmutableList<R>
AbstractImmutableSortedMap. flatCollect(Function<? super V,? extends java.lang.Iterable<R>> function)
ImmutableList<V>
AbstractImmutableSortedMap. reject(Predicate<? super V> predicate)
<P> ImmutableList<V>
AbstractImmutableSortedMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)
ImmutableList<V>
AbstractImmutableSortedMap. select(Predicate<? super V> predicate)
<S> ImmutableList<S>
AbstractImmutableSortedMap. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableList<V>
AbstractImmutableSortedMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)
<S> ImmutableList<Pair<V,S>>
AbstractImmutableSortedMap. zip(java.lang.Iterable<S> that)
ImmutableList<Pair<V,java.lang.Integer>>
AbstractImmutableSortedMap. zipWithIndex()
-
Uses of ImmutableList in org.eclipse.collections.impl.multimap.list
Methods in org.eclipse.collections.impl.multimap.list that return ImmutableList Modifier and Type Method Description protected ImmutableList<V>
ImmutableListMultimapImpl. createCollection()
Method parameters in org.eclipse.collections.impl.multimap.list with type arguments of type ImmutableList Modifier and Type Method Description void
ImmutableListMultimapImpl. forEachKeyImmutableList(Procedure2<? super K,? super ImmutableList<V>> procedure)
Constructor parameters in org.eclipse.collections.impl.multimap.list with type arguments of type ImmutableList Constructor Description ImmutableListMultimapImpl(ImmutableMap<K,ImmutableList<V>> map)
ImmutableListMultimapImpl(MutableMap<K,ImmutableList<V>> map)
ImmutableListMultimapSerializationProxy(ImmutableMap<K,ImmutableList<V>> map)
-
Uses of ImmutableList in org.eclipse.collections.impl.partition.list
Fields in org.eclipse.collections.impl.partition.list declared as ImmutableList Modifier and Type Field Description private ImmutableList<T>
PartitionImmutableListImpl. rejected
private ImmutableList<T>
PartitionImmutableListImpl. selected
Methods in org.eclipse.collections.impl.partition.list that return ImmutableList Modifier and Type Method Description ImmutableList<T>
PartitionImmutableListImpl. getRejected()
ImmutableList<T>
PartitionImmutableListImpl. getSelected()
Constructors in org.eclipse.collections.impl.partition.list with parameters of type ImmutableList Constructor Description PartitionImmutableListImpl(ImmutableList<T> selected, ImmutableList<T> rejected)
-
Uses of ImmutableList in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable that return ImmutableList Modifier and Type Method Description <V> ImmutableList<V>
AbstractImmutableSortedSet. collect(Function<? super T,? extends V> function)
<V> ImmutableList<V>
AbstractImmutableSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ImmutableList<V>AbstractImmutableSortedSet. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<V> ImmutableList<V>
ImmutableEmptySortedSet. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableTreeSet. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableList<V>
AbstractImmutableSortedSet. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<S> ImmutableList<Pair<T,S>>
AbstractImmutableSortedSet. zip(java.lang.Iterable<S> that)
-
Uses of ImmutableList in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return ImmutableList Modifier and Type Method Description <V> ImmutableList<V>
CharAdapter. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableList<V>
CodePointAdapter. collect(IntToObjectFunction<? extends V> function)
<V> ImmutableList<V>
CodePointList. collect(IntToObjectFunction<? extends V> function)
<T> ImmutableList<CharObjectPair<T>>
CharAdapter. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<IntObjectPair<T>>
CodePointAdapter. zip(java.lang.Iterable<T> iterable)
<T> ImmutableList<IntObjectPair<T>>
CodePointList. zip(java.lang.Iterable<T> iterable)
ImmutableList<CharCharPair>
CharAdapter. zipChar(CharIterable iterable)
ImmutableList<IntIntPair>
CodePointAdapter. zipInt(IntIterable iterable)
ImmutableList<IntIntPair>
CodePointList. zipInt(IntIterable iterable)
-
Uses of ImmutableList in org.eclipse.collections.impl.tuple
Methods in org.eclipse.collections.impl.tuple that return ImmutableList Modifier and Type Method Description static <T> ImmutableList<T>
Tuples. pairToImmutableList(Pair<T,T> pair)
static <T> ImmutableList<T>
Tuples. tripleToImmutableList(Triple<T,T,T> triple)
-