Uses of Interface
org.eclipse.collections.api.list.ImmutableList
Packages that use 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
MapThis 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.
-
Uses of ImmutableList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ImmutableListModifier and TypeMethodDescriptiondefault ImmutableList<T>LazyIterable.toImmutableList()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(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
Methods in org.eclipse.collections.api.bag that return ImmutableListModifier and TypeMethodDescriptionImmutableBag.bottomOccurrences(int count) ImmutableBag.topOccurrences(int count) -
Uses of ImmutableList in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableListModifier and TypeMethodDescriptionImmutableBooleanBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.ImmutableByteBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.ImmutableCharBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.ImmutableDoubleBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.ImmutableFloatBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.ImmutableIntBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.ImmutableLongBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.ImmutableShortBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.ImmutableBooleanBag.topOccurrences(int count) Returns thecountmost frequently occurring items.ImmutableByteBag.topOccurrences(int count) Returns thecountmost frequently occurring items.ImmutableCharBag.topOccurrences(int count) Returns thecountmost frequently occurring items.ImmutableDoubleBag.topOccurrences(int count) Returns thecountmost frequently occurring items.ImmutableFloatBag.topOccurrences(int count) Returns thecountmost frequently occurring items.ImmutableIntBag.topOccurrences(int count) Returns thecountmost frequently occurring items.ImmutableLongBag.topOccurrences(int count) Returns thecountmost frequently occurring items.ImmutableShortBag.topOccurrences(int count) Returns thecountmost frequently occurring items. -
Uses of ImmutableList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableListModifier 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
Methods in org.eclipse.collections.api.factory.list that return ImmutableListModifier 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
Methods in org.eclipse.collections.api.list that return ImmutableListModifier 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
Methods in org.eclipse.collections.api.list.primitive that return ImmutableListModifier 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 anImmutableListformed from thisImmutableBooleanListand aListIterableby combining corresponding elements in pairs.default <T> ImmutableList<ByteObjectPair<T>>Returns anImmutableListformed from thisImmutableByteListand aListIterableby combining corresponding elements in pairs.default <T> ImmutableList<CharObjectPair<T>>Returns anImmutableListformed from thisImmutableCharListand aListIterableby combining corresponding elements in pairs.default <T> ImmutableList<DoubleObjectPair<T>>Returns anImmutableListformed from thisImmutableDoubleListand aListIterableby combining corresponding elements in pairs.default <T> ImmutableList<FloatObjectPair<T>>Returns anImmutableListformed from thisImmutableFloatListand aListIterableby combining corresponding elements in pairs.default <T> ImmutableList<IntObjectPair<T>>Returns anImmutableListformed from thisImmutableIntListand aListIterableby combining corresponding elements in pairs.default <T> ImmutableList<LongObjectPair<T>>Returns anImmutableListformed from thisImmutableLongListand aListIterableby combining corresponding elements in pairs.default <T> ImmutableList<ShortObjectPair<T>>Returns anImmutableListformed from thisImmutableShortListand aListIterableby combining corresponding elements in pairs.default ImmutableList<BooleanBooleanPair>ImmutableBooleanList.zipBoolean(BooleanIterable iterable) Returns anImmutableListformed from thisImmutableBooleanListand anotherBooleanListby combining corresponding elements in pairs.default ImmutableList<ByteBytePair>ImmutableByteList.zipByte(ByteIterable iterable) Returns anImmutableListformed from thisImmutableByteListand anotherByteListby combining corresponding elements in pairs.default ImmutableList<CharCharPair>ImmutableCharList.zipChar(CharIterable iterable) Returns anImmutableListformed from thisImmutableCharListand anotherCharListby combining corresponding elements in pairs.default ImmutableList<DoubleDoublePair>ImmutableDoubleList.zipDouble(DoubleIterable iterable) Returns anImmutableListformed from thisImmutableDoubleListand anotherDoubleListby combining corresponding elements in pairs.default ImmutableList<FloatFloatPair>ImmutableFloatList.zipFloat(FloatIterable iterable) Returns anImmutableListformed from thisImmutableFloatListand anotherFloatListby combining corresponding elements in pairs.default ImmutableList<IntIntPair>ImmutableIntList.zipInt(IntIterable iterable) Returns anImmutableListformed from thisImmutableIntListand anotherIntListby combining corresponding elements in pairs.default ImmutableList<LongLongPair>ImmutableLongList.zipLong(LongIterable iterable) Returns anImmutableListformed from thisImmutableLongListand anotherLongListby combining corresponding elements in pairs.default ImmutableList<ShortShortPair>ImmutableShortList.zipShort(ShortIterable iterable) Returns anImmutableListformed from thisImmutableShortListand anotherShortListby combining corresponding elements in pairs. -
Uses of ImmutableList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableListModifier 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
Methods in org.eclipse.collections.api.map.sorted that return ImmutableListModifier 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
Methods in org.eclipse.collections.api.multimap.list that return ImmutableListMethod parameters in org.eclipse.collections.api.multimap.list with type arguments of type ImmutableListModifier and TypeMethodDescriptionvoidImmutableListMultimap.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 ImmutableListModifier and TypeMethodDescriptionPartitionImmutableList.getRejected()PartitionImmutableList.getSelected() -
Uses of ImmutableList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableListModifier 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>>