Uses of Interface
org.eclipse.collections.api.list.ImmutableList
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains interfaces for SortedBag API.
This package contains factory API for creating instances of type
ListIterable
.This package contains interfaces for list API which enhance the performance and functionality of
List
.This package contains mutable and immutable primitive list API.
This package contains interfaces for map API which enhance the performance and functionality of
Map
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for
ListMultimap
.This package contains interfaces for
PartitionList
.This package contains interfaces for sorted set API.
This package contains implementations of the
ImmutableBag
interface.This package contains implementations of the
MutableCollection
interface.This package contains static utilities for creating mutable and immutable collection factories.
This package contains implementations of the
ImmutableList
interface.This package contains implementations of the
MutableList
interface.This package contains implementations of the primitive list interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the
ListMultimap
interface.This package contains implementations of the
PartitionList
interface.-
Uses of ImmutableList in org.eclipse.collections.api
Modifier and TypeMethodDescriptiondefault 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
(Comparator<? super T> comparator) Converts the collection to an ImmutableList implementation and sorts it using the specified comparator.default <V extends 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
Modifier and TypeMethodDescriptionImmutableBag.bottomOccurrences
(int count) ImmutableBag.topOccurrences
(int count) -
Uses of ImmutableList in org.eclipse.collections.api.bag.primitive
Modifier and TypeMethodDescriptionImmutableBooleanBag.bottomOccurrences
(int count) Returns thecount
least frequently occurring items.ImmutableByteBag.bottomOccurrences
(int count) Returns thecount
least frequently occurring items.ImmutableCharBag.bottomOccurrences
(int count) Returns thecount
least frequently occurring items.ImmutableDoubleBag.bottomOccurrences
(int count) Returns thecount
least frequently occurring items.ImmutableFloatBag.bottomOccurrences
(int count) Returns thecount
least frequently occurring items.ImmutableIntBag.bottomOccurrences
(int count) Returns thecount
least frequently occurring items.ImmutableLongBag.bottomOccurrences
(int count) Returns thecount
least frequently occurring items.ImmutableShortBag.bottomOccurrences
(int count) Returns thecount
least frequently occurring items.ImmutableBooleanBag.topOccurrences
(int count) Returns thecount
most frequently occurring items.ImmutableByteBag.topOccurrences
(int count) Returns thecount
most frequently occurring items.ImmutableCharBag.topOccurrences
(int count) Returns thecount
most frequently occurring items.ImmutableDoubleBag.topOccurrences
(int count) Returns thecount
most frequently occurring items.ImmutableFloatBag.topOccurrences
(int count) Returns thecount
most frequently occurring items.ImmutableIntBag.topOccurrences
(int count) Returns thecount
most frequently occurring items.ImmutableLongBag.topOccurrences
(int count) Returns thecount
most frequently occurring items.ImmutableShortBag.topOccurrences
(int count) Returns thecount
most frequently occurring items. -
Uses of ImmutableList in org.eclipse.collections.api.bag.sorted
Modifier and TypeMethodDescription<V> ImmutableList<V>
<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 Iterable<V>> function) default <P,
V> ImmutableList<V> ImmutableSortedBag.flatCollectWith
(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter) <S> ImmutableList<Pair<T,
S>> -
Uses of ImmutableList in org.eclipse.collections.api.factory.list
Modifier and TypeMethodDescription<T> ImmutableList<T>
ImmutableListFactory.empty()
default <T> ImmutableList<T>
ImmutableListFactory.fromStream
(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>
<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>
default <T> ImmutableList<T>
ImmutableListFactory.withAllSorted
(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
Modifier and TypeMethodDescription<V> ImmutableList<V>
<V> ImmutableList<V>
<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.distinct()
ImmutableList.distinct
(HashingStrategy<? super T> hashingStrategy) <V> ImmutableList<T>
ImmutableList.distinctBy
(Function<? super T, ? extends V> function) ImmutableList.drop
(int count) <V> ImmutableList<V>
ImmutableList.flatCollect
(Function<? super T, ? extends Iterable<V>> function) default <P,
V> ImmutableList<V> ImmutableList.flatCollectWith
(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter) ImmutableList.newWithAll
(Iterable<? extends T> elements) ImmutableList.newWithout
(T element) ImmutableList.newWithoutAll
(Iterable<? extends T> elements) <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.<S> ImmutableList<S>
ImmutableList.selectInstancesOf
(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.subList
(int fromIndex, int toIndex) ImmutableList.take
(int count) 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.toReversed()
<S> ImmutableList<Pair<T,
S>> ImmutableList.zipWithIndex()
-
Uses of ImmutableList in org.eclipse.collections.api.list.primitive
Modifier and TypeMethodDescription<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>>
Returns anImmutableList
formed from thisImmutableBooleanList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<ByteObjectPair<T>>
Returns anImmutableList
formed from thisImmutableByteList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<CharObjectPair<T>>
Returns anImmutableList
formed from thisImmutableCharList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<DoubleObjectPair<T>>
Returns anImmutableList
formed from thisImmutableDoubleList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<FloatObjectPair<T>>
Returns anImmutableList
formed from thisImmutableFloatList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<IntObjectPair<T>>
Returns anImmutableList
formed from thisImmutableIntList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<LongObjectPair<T>>
Returns anImmutableList
formed from thisImmutableLongList
and aListIterable
by combining corresponding elements in pairs.default <T> ImmutableList<ShortObjectPair<T>>
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
Modifier and TypeMethodDescription<VV> ImmutableList<VV>
<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) ImmutableOrderedMap.distinct()
<V1> ImmutableList<V1>
ImmutableOrderedMap.flatCollect
(Function<? super V, ? extends Iterable<V1>> function) default <P,
V1> ImmutableList<V1> ImmutableOrderedMap.flatCollectWith
(Function2<? super V, ? super P, ? extends Iterable<V1>> function, P parameter) <P> ImmutableList<V>
ImmutableOrderedMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <S> ImmutableList<S>
ImmutableOrderedMap.selectInstancesOf
(Class<S> clazz) <P> ImmutableList<V>
ImmutableOrderedMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <S> ImmutableList<Pair<V,
S>> ImmutableOrderedMap.zipWithIndex()
-
Uses of ImmutableList in org.eclipse.collections.api.map.sorted
Modifier and TypeMethodDescription<R> ImmutableList<R>
<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 Iterable<R>> function) default <P,
R> ImmutableList<R> ImmutableSortedMap.flatCollectWith
(Function2<? super V, ? super P, ? extends Iterable<R>> function, P parameter) <P> ImmutableList<V>
ImmutableSortedMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <S> ImmutableList<S>
ImmutableSortedMap.selectInstancesOf
(Class<S> clazz) <P> ImmutableList<V>
ImmutableSortedMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <S> ImmutableList<Pair<V,
S>> ImmutableSortedMap.zipWithIndex()
-
Uses of ImmutableList in org.eclipse.collections.api.multimap.list
Modifier and TypeMethodDescriptionvoid
ImmutableListMultimap.forEachKeyImmutableList
(Procedure2<? super K, ? super ImmutableList<V>> procedure) -
Uses of ImmutableList in org.eclipse.collections.api.partition.list
Modifier and TypeMethodDescriptionPartitionImmutableList.getRejected()
PartitionImmutableList.getSelected()
-
Uses of ImmutableList in org.eclipse.collections.api.set.sorted
Modifier and TypeMethodDescription<V> ImmutableList<V>
<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 Iterable<V>> function) default <P,
V> ImmutableList<V> ImmutableSortedSet.flatCollectWith
(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter) <S> ImmutableList<Pair<T,
S>> -
Uses of ImmutableList in org.eclipse.collections.impl.bag.immutable
Modifier and TypeMethodDescriptionAbstractImmutableBag.bottomOccurrences
(int n) AbstractImmutableBag.topOccurrences
(int n) -
Uses of ImmutableList in org.eclipse.collections.impl.collection
Modifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.toImmutableList()
AbstractSynchronizedRichIterable.toImmutableSortedList()
AbstractSynchronizedRichIterable.toImmutableSortedList
(Comparator<? super T> comparator) -
Uses of ImmutableList in org.eclipse.collections.impl.collection.mutable
Modifier and TypeMethodDescriptionAbstractMultiReaderMutableCollection.toImmutableList()
AbstractMultiReaderMutableCollection.toImmutableSortedList()
AbstractMultiReaderMutableCollection.toImmutableSortedList
(Comparator<? super T> comparator) <V extends Comparable<? super V>>
ImmutableList<T>AbstractMultiReaderMutableCollection.toImmutableSortedListBy
(Function<? super T, ? extends V> function) -
Uses of ImmutableList in org.eclipse.collections.impl.collector
Modifier and TypeMethodDescriptionstatic <T> Collector<T,
?, ImmutableList<T>> Collectors2.toImmutableList()
Returns the elements as an ImmutableList.static <T> Collector<T,
?, ImmutableList<T>> Collectors2.toImmutableSortedList()
Returns the elements as an ImmutableList that has been sorted.static <T> Collector<T,
?, ImmutableList<T>> Collectors2.toImmutableSortedList
(Comparator<? super T> comparator) Returns the elements as an ImmutableList that has been sorted using the specified comparator.static <T,
V extends Comparable<? super V>>
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
Modifier and TypeMethodDescriptionstatic <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.immutable
Modifier and TypeMethodDescription<T> ImmutableList<T>
ImmutableListFactoryImpl.empty()
<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>
<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>
<T> ImmutableList<T>
ImmutableListFactoryImpl.withAllSorted
(Comparator<? super T> comparator, RichIterable<? extends T> items) <T> ImmutableList<T>
ImmutableListFactoryImpl.withAllSorted
(RichIterable<? extends T> items) -
Uses of ImmutableList in org.eclipse.collections.impl.list.mutable
Modifier and TypeMethodDescriptionListAdapter.toImmutable()
MultiReaderFastList.toImmutable()
RandomAccessListAdapter.toImmutable()
SynchronizedMutableList.toImmutable()
UnmodifiableMutableList.toImmutable()
-
Uses of ImmutableList in org.eclipse.collections.impl.list.primitive
Modifier and TypeMethodDescription<V> ImmutableList<V>
IntInterval.collect
(IntToObjectFunction<? extends V> function) <V> ImmutableList<V>
LongInterval.collect
(LongToObjectFunction<? extends V> function) <T> ImmutableList<IntObjectPair<T>>
<T> ImmutableList<LongObjectPair<T>>
IntInterval.zipInt
(IntIterable iterable) LongInterval.zipLong
(LongIterable iterable) -
Uses of ImmutableList in org.eclipse.collections.impl.map.mutable.primitive
Modifier and TypeMethodDescriptionSynchronizedByteObjectMap.toImmutableList()
SynchronizedCharObjectMap.toImmutableList()
SynchronizedDoubleObjectMap.toImmutableList()
SynchronizedFloatObjectMap.toImmutableList()
SynchronizedIntObjectMap.toImmutableList()
SynchronizedLongObjectMap.toImmutableList()
SynchronizedShortObjectMap.toImmutableList()
SynchronizedByteObjectMap.toImmutableSortedList()
SynchronizedByteObjectMap.toImmutableSortedList
(Comparator<? super V> comparator) SynchronizedCharObjectMap.toImmutableSortedList()
SynchronizedCharObjectMap.toImmutableSortedList
(Comparator<? super V> comparator) SynchronizedDoubleObjectMap.toImmutableSortedList()
SynchronizedDoubleObjectMap.toImmutableSortedList
(Comparator<? super V> comparator) SynchronizedFloatObjectMap.toImmutableSortedList()
SynchronizedFloatObjectMap.toImmutableSortedList
(Comparator<? super V> comparator) SynchronizedIntObjectMap.toImmutableSortedList()
SynchronizedIntObjectMap.toImmutableSortedList
(Comparator<? super V> comparator) SynchronizedLongObjectMap.toImmutableSortedList()
SynchronizedLongObjectMap.toImmutableSortedList
(Comparator<? super V> comparator) SynchronizedShortObjectMap.toImmutableSortedList()
SynchronizedShortObjectMap.toImmutableSortedList
(Comparator<? super V> comparator) <VV extends Comparable<? super VV>>
ImmutableList<V>SynchronizedByteObjectMap.toImmutableSortedListBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableList<V>SynchronizedCharObjectMap.toImmutableSortedListBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableList<V>SynchronizedDoubleObjectMap.toImmutableSortedListBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableList<V>SynchronizedFloatObjectMap.toImmutableSortedListBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableList<V>SynchronizedIntObjectMap.toImmutableSortedListBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableList<V>SynchronizedLongObjectMap.toImmutableSortedListBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableList<V>SynchronizedShortObjectMap.toImmutableSortedListBy
(Function<? super V, ? extends VV> function) -
Uses of ImmutableList in org.eclipse.collections.impl.map.sorted.immutable
Modifier and TypeMethodDescription<R> ImmutableList<R>
<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) AbstractImmutableSortedMap.distinct()
<R> ImmutableList<R>
AbstractImmutableSortedMap.flatCollect
(Function<? super V, ? extends Iterable<R>> function) <P> ImmutableList<V>
AbstractImmutableSortedMap.rejectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <S> ImmutableList<S>
AbstractImmutableSortedMap.selectInstancesOf
(Class<S> clazz) <P> ImmutableList<V>
AbstractImmutableSortedMap.selectWith
(Predicate2<? super V, ? super P> predicate, P parameter) <S> ImmutableList<Pair<V,
S>> AbstractImmutableSortedMap.zipWithIndex()
-
Uses of ImmutableList in org.eclipse.collections.impl.multimap.list
Modifier and TypeMethodDescriptionvoid
ImmutableListMultimapImpl.forEachKeyImmutableList
(Procedure2<? super K, ? super ImmutableList<V>> procedure) ModifierConstructorDescription -
Uses of ImmutableList in org.eclipse.collections.impl.partition.list
Modifier and TypeMethodDescriptionPartitionImmutableListImpl.getRejected()
PartitionImmutableListImpl.getSelected()
ModifierConstructorDescriptionPartitionImmutableListImpl
(ImmutableList<T> selected, ImmutableList<T> rejected) -
Uses of ImmutableList in org.eclipse.collections.impl.string.immutable
Modifier and TypeMethodDescription<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>>
<T> ImmutableList<IntObjectPair<T>>
<T> ImmutableList<IntObjectPair<T>>
CharAdapter.zipChar
(CharIterable iterable) CodePointAdapter.zipInt
(IntIterable iterable) CodePointList.zipInt
(IntIterable iterable) -
Uses of ImmutableList in org.eclipse.collections.impl.tuple
Modifier and TypeMethodDescriptionstatic <T> ImmutableList<T>
Tuples.pairToImmutableList
(Pair<T, T> pair) static <T> ImmutableList<T>
Tuples.tripleToImmutableList
(Triple<T, T, T> triple)