Uses of Interface
org.eclipse.collections.api.list.MutableList
Packages that use MutableList
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.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag interface.This package contains implementations of the
MutableBag interface.This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of
MutableSortedBag.This package contains implementations of the
MutableBiMap interface.This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure.This package contains implementations of primitive functions.
This package contains implementations of primitive procedures.
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
LazyIterable interface.This package contains implementations of the
ListIterable interface.This package contains implementations of the
FixedSizeList interface.This package contains implementations of the
MutableList interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap interface.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 mutable map implementations backed by hashtables that rely on
HashingStrategys provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains implementations of the
ListMultimap interface.This package contains implementations of the
PartitionList interface.This package contains implementations of the
PartitionStack interface.This package contains implementations of
MutableSet.This package contains implementations of
MutableSortedSet.This package contains implementations of sets with user defined
HashingStrategys.This package contains implementations of the
ImmutableStack interface.This package contains implementations of the
MutableStack interface.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableListModifier and TypeMethodDescriptionParallelIterable.toList()RichIterable.toList()Converts the collection to a MutableList implementation.default MutableList<T> ParallelIterable.toSortedList()ParallelIterable.toSortedList(Comparator<? super T> comparator) default MutableList<T> RichIterable.toSortedList()Converts the collection to a MutableList implementation and sorts it using the natural order of the elements.default MutableList<T> RichIterable.toSortedList(Comparator<? super T> comparator) Converts the collection to a MutableList implementation and sorts it using the specified comparator.<V extends Comparable<? super V>>
MutableList<T> ParallelIterable.toSortedListBy(Function<? super T, ? extends V> function) default <V extends Comparable<? super V>>
MutableList<T> RichIterable.toSortedListBy(Function<? super T, ? extends V> function) Converts the collection to a MutableList implementation and sorts it based on the natural order of the attribute returned byfunction. -
Uses of MutableList in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableListModifier and TypeMethodDescriptionMutableBagIterable.bottomOccurrences(int count) MutableBagIterable.topOccurrences(int count) -
Uses of MutableList in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableListModifier and TypeMethodDescriptionMutableBooleanBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.MutableByteBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.MutableCharBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.MutableDoubleBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.MutableFloatBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.MutableIntBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.MutableLongBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.MutableShortBag.bottomOccurrences(int count) Returns thecountleast frequently occurring items.MutableBooleanBag.topOccurrences(int count) Returns thecountmost frequently occurring items.MutableByteBag.topOccurrences(int count) Returns thecountmost frequently occurring items.MutableCharBag.topOccurrences(int count) Returns thecountmost frequently occurring items.MutableDoubleBag.topOccurrences(int count) Returns thecountmost frequently occurring items.MutableFloatBag.topOccurrences(int count) Returns thecountmost frequently occurring items.MutableIntBag.topOccurrences(int count) Returns thecountmost frequently occurring items.MutableLongBag.topOccurrences(int count) Returns thecountmost frequently occurring items.MutableShortBag.topOccurrences(int count) Returns thecountmost frequently occurring items. -
Uses of MutableList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableListModifier and TypeMethodDescription<V> MutableList<V> <V> MutableList<V> MutableSortedBag.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <P,V> MutableList <V> MutableSortedBag.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) default <V> MutableList<V> MutableSortedBag.collectWithIndex(ObjectIntToObjectFunction<? super T, ? extends V> function) <V> MutableList<V> MutableSortedBag.collectWithOccurrences(ObjectIntToObjectFunction<? super T, ? extends V> function) <V> MutableList<V> MutableSortedBag.flatCollect(Function<? super T, ? extends Iterable<V>> function) default <P,V> MutableList <V> MutableSortedBag.flatCollectWith(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter) <S> MutableList<Pair<T, S>> -
Uses of MutableList in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return types with arguments of type MutableListModifier and TypeMethodDescription<P> Twin<MutableList<T>> MutableCollection.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) Deprecated. -
Uses of MutableList in org.eclipse.collections.api.factory.list
Methods in org.eclipse.collections.api.factory.list that return MutableListModifier and TypeMethodDescription<T> MutableList<T> MutableListFactory.empty()<T> MutableList<T> MutableListFactory.fromStream(Stream<? extends T> stream) default <T> MutableList<T> MutableListFactory.of()Same asMutableListFactory.empty().default <T> MutableList<T> MutableListFactory.of(T... items) Same asMutableListFactory.with(Object[]).default <T> MutableList<T> Same asMutableListFactory.withAll(Iterable).default <T> MutableList<T> MutableListFactory.ofInitialCapacity(int capacity) Same asMutableListFactory.empty().default <T> MutableList<T> MutableListFactory.with()Same asMutableListFactory.empty().<T> MutableList<T> MutableListFactory.with(T... items) Creates a new list using the passeditemsargument as the backing store.<T> MutableList<T> <T> MutableList<T> MutableListFactory.withInitialCapacity(int capacity) Same asMutableListFactory.empty().<T> MutableList<T> MutableListFactory.withNValues(int size, Function0<? extends T> factory) default <T> MutableList<T> MutableListFactory.wrapCopy(T... array) Creates a new list by first copying the array passed in. -
Uses of MutableList in org.eclipse.collections.api.list
Subinterfaces of MutableList in org.eclipse.collections.api.listModifier and TypeInterfaceDescriptioninterfaceA FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.interfaceA MultiReaderList provides thread-safe iteration for a list through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().Methods in org.eclipse.collections.api.list that return MutableListModifier and TypeMethodDescriptionMutableList.asSynchronized()MutableList.asUnmodifiable()Returns an unmodifiable view of the list.MutableList.clone()default <V> MutableList<V> default <V> MutableList<V> default <P,V> MutableList <V> MutableList.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) default <V> MutableList<V> MutableList.collectWithIndex(ObjectIntToObjectFunction<? super T, ? extends V> function) MutableList.distinct()Returns a newListIterablecontaining the distinct elements in this list.MutableList.distinct(HashingStrategy<? super T> hashingStrategy) Returns a newListIterablecontaining the distinct elements in this list.<V> MutableList<T> MutableList.distinctBy(Function<? super T, ? extends V> function) MutableList.drop(int count) default <V> MutableList<V> MutableList.flatCollect(Function<? super T, ? extends Iterable<V>> function) default <P,V> MutableList <V> MutableList.flatCollectWith(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter) MutableList.newEmpty()default MutableList<T> default <P> MutableList<T> MutableList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) default MutableList<T> MutableList.rejectWithIndex(ObjectIntPredicate<? super T> predicate) Returns a new MutableList with all elements of the collection that return false when evaluating the specified predicate which is supplied each element and its relative index.default MutableList<T> MutableList.reverseThis()Mutates this list by reversing its order and returns the current list as a result.default MutableList<T> <S> MutableList<S> MutableList.selectInstancesOf(Class<S> clazz) default <P> MutableList<T> MutableList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) default MutableList<T> MutableList.selectWithIndex(ObjectIntPredicate<? super T> predicate) Returns a new MutableList with all elements of the collection that return true when evaluating the specified predicate which is supplied each element and its relative index.default MutableList<T> MutableList.shuffleThis()Mutates this list by shuffling its elements.default MutableList<T> MutableList.shuffleThis(Random random) Mutates this list by shuffling its elements using the specified random.default MutableList<T> MutableList.sortThis()Sorts the internal data structure of this list and returns the list itself as a convenience.default MutableList<T> MutableList.sortThis(Comparator<? super T> comparator) Sorts the internal data structure of this list and returns the list itself as a convenience.default <V extends Comparable<? super V>>
MutableList<T> MutableList.sortThisBy(Function<? super T, ? extends V> function) Sorts the internal data structure of this list based on the natural order of the attribute returned byfunction.MutableList.sortThisByBoolean(BooleanFunction<? super T> function) MutableList.sortThisByByte(ByteFunction<? super T> function) MutableList.sortThisByChar(CharFunction<? super T> function) MutableList.sortThisByDouble(DoubleFunction<? super T> function) MutableList.sortThisByFloat(FloatFunction<? super T> function) MutableList.sortThisByInt(IntFunction<? super T> function) MutableList.sortThisByLong(LongFunction<? super T> function) MutableList.sortThisByShort(ShortFunction<? super T> function) MutableList.subList(int fromIndex, int toIndex) MutableList.take(int count) default MutableList<T> default MutableList<T> MutableList.toReversed()Returns a new MutableList in reverse order.default MutableList<T> default MutableList<T> default MutableList<T> FixedSizeList.withoutAll(Iterable<? extends T> elements) default MutableList<T> MutableList.withoutAll(Iterable<? extends T> elements) <S> MutableList<Pair<T, S>> MutableList.zipWithIndex()Method parameters in org.eclipse.collections.api.list with type arguments of type MutableListModifier and TypeMethodDescriptionvoidMultiReaderList.withReadLockAndDelegate(Procedure<? super MutableList<T>> procedure) voidMultiReaderList.withWriteLockAndDelegate(Procedure<? super MutableList<T>> procedure) -
Uses of MutableList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return MutableListModifier and TypeMethodDescriptionMutableBooleanList.boxed()MutableByteList.boxed()MutableCharList.boxed()MutableDoubleList.boxed()MutableFloatList.boxed()MutableIntList.boxed()MutableLongList.boxed()MutableShortList.boxed()<V> MutableList<V> MutableBooleanList.collect(BooleanToObjectFunction<? extends V> function) <V> MutableList<V> MutableByteList.collect(ByteToObjectFunction<? extends V> function) <V> MutableList<V> MutableCharList.collect(CharToObjectFunction<? extends V> function) <V> MutableList<V> MutableDoubleList.collect(DoubleToObjectFunction<? extends V> function) <V> MutableList<V> MutableFloatList.collect(FloatToObjectFunction<? extends V> function) <V> MutableList<V> MutableIntList.collect(IntToObjectFunction<? extends V> function) <V> MutableList<V> MutableLongList.collect(LongToObjectFunction<? extends V> function) <V> MutableList<V> MutableShortList.collect(ShortToObjectFunction<? extends V> function) default <V> MutableList<V> MutableBooleanList.collectWithIndex(BooleanIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> MutableList<V> MutableByteList.collectWithIndex(ByteIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> MutableList<V> MutableCharList.collectWithIndex(CharIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> MutableList<V> MutableDoubleList.collectWithIndex(DoubleIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> MutableList<V> MutableFloatList.collectWithIndex(FloatIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> MutableList<V> MutableIntList.collectWithIndex(IntIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> MutableList<V> MutableLongList.collectWithIndex(LongIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> MutableList<V> MutableShortList.collectWithIndex(ShortIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.default <T> MutableList<BooleanObjectPair<T>> Returns aMutableListformed from thisMutableBooleanListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<ByteObjectPair<T>> Returns aMutableListformed from thisMutableByteListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<CharObjectPair<T>> Returns aMutableListformed from thisMutableCharListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<DoubleObjectPair<T>> Returns aMutableListformed from thisMutableDoubleListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<FloatObjectPair<T>> Returns aMutableListformed from thisMutableFloatListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<IntObjectPair<T>> Returns aMutableListformed from thisMutableIntListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<LongObjectPair<T>> Returns aMutableListformed from thisMutableLongListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<ShortObjectPair<T>> Returns aMutableListformed from thisMutableShortListand aListIterableby combining corresponding elements in pairs.default MutableList<BooleanBooleanPair> MutableBooleanList.zipBoolean(BooleanIterable iterable) Returns aMutableListformed from thisMutableBooleanListand anotherBooleanListby combining corresponding elements in pairs.default MutableList<ByteBytePair> MutableByteList.zipByte(ByteIterable iterable) Returns aMutableListformed from thisMutableByteListand anotherByteListby combining corresponding elements in pairs.default MutableList<CharCharPair> MutableCharList.zipChar(CharIterable iterable) Returns aMutableListformed from thisMutableCharListand anotherCharListby combining corresponding elements in pairs.default MutableList<DoubleDoublePair> MutableDoubleList.zipDouble(DoubleIterable iterable) Returns aMutableListformed from thisMutableDoubleListand anotherDoubleListby combining corresponding elements in pairs.default MutableList<FloatFloatPair> MutableFloatList.zipFloat(FloatIterable iterable) Returns aMutableListformed from thisMutableFloatListand anotherFloatListby combining corresponding elements in pairs.default MutableList<IntIntPair> MutableIntList.zipInt(IntIterable iterable) Returns aMutableListformed from thisMutableIntListand anotherIntListby combining corresponding elements in pairs.default MutableList<LongLongPair> MutableLongList.zipLong(LongIterable iterable) Returns aMutableListformed from thisMutableLongListand anotherLongListby combining corresponding elements in pairs.default MutableList<ShortShortPair> MutableShortList.zipShort(ShortIterable iterable) Returns aMutableListformed from thisMutableShortListand anotherShortListby combining corresponding elements in pairs. -
Uses of MutableList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableListModifier and TypeMethodDescription<VV> MutableList<VV> <V1> MutableList<V1> MutableOrderedMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends V1> function) <P,V1> MutableList <V1> MutableOrderedMap.collectWith(Function2<? super V, ? super P, ? extends V1> function, P parameter) MutableOrderedMap.distinct()<V1> MutableList<V1> MutableOrderedMap.flatCollect(Function<? super V, ? extends Iterable<V1>> function) default <P,V1> MutableList <V1> MutableOrderedMap.flatCollectWith(Function2<? super V, ? super P, ? extends Iterable<V1>> function, P parameter) <P> MutableList<V> MutableOrderedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableList<S> MutableOrderedMap.selectInstancesOf(Class<S> clazz) <P> MutableList<V> MutableOrderedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableList<Pair<V, S>> MutableOrderedMap.zipWithIndex() -
Uses of MutableList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableListModifier and TypeMethodDescription<R> MutableList<R> <R> MutableList<R> MutableSortedMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends R> function) <P,VV> MutableList <VV> MutableSortedMap.collectWith(Function2<? super V, ? super P, ? extends VV> function, P parameter) default <R> MutableList<R> MutableSortedMap.collectWithIndex(ObjectIntToObjectFunction<? super V, ? extends R> function) MutableSortedMap.distinct()<R> MutableList<R> MutableSortedMap.flatCollect(Function<? super V, ? extends Iterable<R>> function) default <P,R> MutableList <R> MutableSortedMap.flatCollectWith(Function2<? super V, ? super P, ? extends Iterable<R>> function, P parameter) <P> MutableList<V> MutableSortedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableList<S> MutableSortedMap.selectInstancesOf(Class<S> clazz) <P> MutableList<V> MutableSortedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableList<Pair<V, S>> MutableSortedMap.zipWithIndex() -
Uses of MutableList in org.eclipse.collections.api.multimap.list
Methods in org.eclipse.collections.api.multimap.list that return MutableListModifier and TypeMethodDescriptionMutableListMultimap.getIfAbsentPutAll(K key, Iterable<? extends V> values) MutableListMultimap.replaceValues(K key, Iterable<? extends V> values) Method parameters in org.eclipse.collections.api.multimap.list with type arguments of type MutableListModifier and TypeMethodDescriptionvoidMutableListMultimap.forEachKeyMutableList(Procedure2<? super K, ? super MutableList<V>> procedure) -
Uses of MutableList in org.eclipse.collections.api.partition.list
Methods in org.eclipse.collections.api.partition.list that return MutableListModifier and TypeMethodDescriptionPartitionMutableList.getRejected()PartitionMutableList.getSelected() -
Uses of MutableList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableListModifier and TypeMethodDescription<V> MutableList<V> <V> MutableList<V> MutableSortedSet.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <P,V> MutableList <V> MutableSortedSet.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) default <V> MutableList<V> MutableSortedSet.collectWithIndex(ObjectIntToObjectFunction<? super T, ? extends V> function) <V> MutableList<V> MutableSortedSet.flatCollect(Function<? super T, ? extends Iterable<V>> function) default <P,V> MutableList <V> MutableSortedSet.flatCollectWith(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter) <S> MutableList<Pair<T, S>> -
Uses of MutableList in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return MutableListModifier and TypeMethodDescriptionAbstractRichIterable.toList()UnmodifiableRichIterable.toList()UnmodifiableRichIterable.toSortedList()UnmodifiableRichIterable.toSortedList(Comparator<? super T> comparator) <V extends Comparable<? super V>>
MutableList<T> AbstractRichIterable.toSortedListBy(Function<? super T, ? extends V> function) -
Uses of MutableList in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag that return MutableListModifier and TypeMethodDescriptionprotected MutableList<ObjectIntPair<T>> AbstractBag.occurrencesSortingBy(int n, IntFunction<ObjectIntPair<T>> function, MutableList<ObjectIntPair<T>> returnWhenEmpty) AbstractBag.toList()protected MutableList<ObjectIntPair<T>> AbstractBag.toListWithOccurrences()AbstractBag.toSortedList(Comparator<? super T> comparator) Methods in org.eclipse.collections.impl.bag with parameters of type MutableListModifier and TypeMethodDescriptionprotected MutableList<ObjectIntPair<T>> AbstractBag.occurrencesSortingBy(int n, IntFunction<ObjectIntPair<T>> function, MutableList<ObjectIntPair<T>> returnWhenEmpty) -
Uses of MutableList in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return MutableListModifier and TypeMethodDescriptionImmutableEmptyBag.toList()ImmutableHashBag.toList()ImmutableEmptyBag.toSortedList()ImmutableEmptyBag.toSortedList(Comparator<? super T> comparator) ImmutableHashBag.toSortedList()ImmutableHashBag.toSortedList(Comparator<? super T> comparator) -
Uses of MutableList in org.eclipse.collections.impl.bag.mutable
Fields in org.eclipse.collections.impl.bag.mutable declared as MutableListModifier and TypeFieldDescriptionprivate final MutableList<MultiReaderHashBag.UntouchableIterator<T>> MultiReaderHashBag.UntouchableMutableBag.requestedIteratorsMethods in org.eclipse.collections.impl.bag.mutable that return MutableListModifier and TypeMethodDescriptionAbstractMutableBagIterable.bottomOccurrences(int n) MultiReaderHashBag.bottomOccurrences(int count) MultiReaderHashBag.UntouchableMutableBag.bottomOccurrences(int count) SynchronizedBag.bottomOccurrences(int count) UnmodifiableBag.bottomOccurrences(int count) AbstractMutableBagIterable.topOccurrences(int n) MultiReaderHashBag.topOccurrences(int count) MultiReaderHashBag.UntouchableMutableBag.topOccurrences(int count) SynchronizedBag.topOccurrences(int count) UnmodifiableBag.topOccurrences(int count) Methods in org.eclipse.collections.impl.bag.mutable that return types with arguments of type MutableListModifier and TypeMethodDescription<P> Twin<MutableList<T>> AbstractMutableBagIterable.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of MutableList in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return MutableListModifier and TypeMethodDescriptionBooleanHashBag.bottomOccurrences(int count) ByteHashBag.bottomOccurrences(int count) CharHashBag.bottomOccurrences(int count) DoubleHashBag.bottomOccurrences(int count) FloatHashBag.bottomOccurrences(int count) IntHashBag.bottomOccurrences(int count) LongHashBag.bottomOccurrences(int count) ShortHashBag.bottomOccurrences(int count) SynchronizedBooleanBag.bottomOccurrences(int count) SynchronizedByteBag.bottomOccurrences(int count) SynchronizedCharBag.bottomOccurrences(int count) SynchronizedDoubleBag.bottomOccurrences(int count) SynchronizedFloatBag.bottomOccurrences(int count) SynchronizedIntBag.bottomOccurrences(int count) SynchronizedLongBag.bottomOccurrences(int count) SynchronizedShortBag.bottomOccurrences(int count) UnmodifiableBooleanBag.bottomOccurrences(int count) UnmodifiableByteBag.bottomOccurrences(int count) UnmodifiableCharBag.bottomOccurrences(int count) UnmodifiableDoubleBag.bottomOccurrences(int count) UnmodifiableFloatBag.bottomOccurrences(int count) UnmodifiableIntBag.bottomOccurrences(int count) UnmodifiableLongBag.bottomOccurrences(int count) UnmodifiableShortBag.bottomOccurrences(int count) protected MutableList<ByteIntPair> ByteHashBag.occurrencesSortingBy(int n, IntFunction<ByteIntPair> function, MutableList<ByteIntPair> returnWhenEmpty) protected MutableList<CharIntPair> CharHashBag.occurrencesSortingBy(int n, IntFunction<CharIntPair> function, MutableList<CharIntPair> returnWhenEmpty) protected MutableList<DoubleIntPair> DoubleHashBag.occurrencesSortingBy(int n, IntFunction<DoubleIntPair> function, MutableList<DoubleIntPair> returnWhenEmpty) protected MutableList<FloatIntPair> FloatHashBag.occurrencesSortingBy(int n, IntFunction<FloatIntPair> function, MutableList<FloatIntPair> returnWhenEmpty) protected MutableList<IntIntPair> IntHashBag.occurrencesSortingBy(int n, IntFunction<IntIntPair> function, MutableList<IntIntPair> returnWhenEmpty) protected MutableList<LongIntPair> LongHashBag.occurrencesSortingBy(int n, IntFunction<LongIntPair> function, MutableList<LongIntPair> returnWhenEmpty) protected MutableList<ShortIntPair> ShortHashBag.occurrencesSortingBy(int n, IntFunction<ShortIntPair> function, MutableList<ShortIntPair> returnWhenEmpty) protected MutableList<ByteIntPair> ByteHashBag.toListWithOccurrences()protected MutableList<CharIntPair> CharHashBag.toListWithOccurrences()protected MutableList<DoubleIntPair> DoubleHashBag.toListWithOccurrences()protected MutableList<FloatIntPair> FloatHashBag.toListWithOccurrences()protected MutableList<IntIntPair> IntHashBag.toListWithOccurrences()protected MutableList<LongIntPair> LongHashBag.toListWithOccurrences()protected MutableList<ShortIntPair> ShortHashBag.toListWithOccurrences()BooleanHashBag.topOccurrences(int count) ByteHashBag.topOccurrences(int count) CharHashBag.topOccurrences(int count) DoubleHashBag.topOccurrences(int count) FloatHashBag.topOccurrences(int count) IntHashBag.topOccurrences(int count) LongHashBag.topOccurrences(int count) ShortHashBag.topOccurrences(int count) SynchronizedBooleanBag.topOccurrences(int count) SynchronizedByteBag.topOccurrences(int count) SynchronizedCharBag.topOccurrences(int count) SynchronizedDoubleBag.topOccurrences(int count) SynchronizedFloatBag.topOccurrences(int count) SynchronizedIntBag.topOccurrences(int count) SynchronizedLongBag.topOccurrences(int count) SynchronizedShortBag.topOccurrences(int count) UnmodifiableBooleanBag.topOccurrences(int count) UnmodifiableByteBag.topOccurrences(int count) UnmodifiableCharBag.topOccurrences(int count) UnmodifiableDoubleBag.topOccurrences(int count) UnmodifiableFloatBag.topOccurrences(int count) UnmodifiableIntBag.topOccurrences(int count) UnmodifiableLongBag.topOccurrences(int count) UnmodifiableShortBag.topOccurrences(int count) Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type MutableListModifier and TypeMethodDescriptionprotected MutableList<ByteIntPair> ByteHashBag.occurrencesSortingBy(int n, IntFunction<ByteIntPair> function, MutableList<ByteIntPair> returnWhenEmpty) protected MutableList<CharIntPair> CharHashBag.occurrencesSortingBy(int n, IntFunction<CharIntPair> function, MutableList<CharIntPair> returnWhenEmpty) protected MutableList<DoubleIntPair> DoubleHashBag.occurrencesSortingBy(int n, IntFunction<DoubleIntPair> function, MutableList<DoubleIntPair> returnWhenEmpty) protected MutableList<FloatIntPair> FloatHashBag.occurrencesSortingBy(int n, IntFunction<FloatIntPair> function, MutableList<FloatIntPair> returnWhenEmpty) protected MutableList<IntIntPair> IntHashBag.occurrencesSortingBy(int n, IntFunction<IntIntPair> function, MutableList<IntIntPair> returnWhenEmpty) protected MutableList<LongIntPair> LongHashBag.occurrencesSortingBy(int n, IntFunction<LongIntPair> function, MutableList<LongIntPair> returnWhenEmpty) protected MutableList<ShortIntPair> ShortHashBag.occurrencesSortingBy(int n, IntFunction<ShortIntPair> function, MutableList<ShortIntPair> returnWhenEmpty) -
Uses of MutableList in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return MutableListModifier and TypeMethodDescriptionprivate MutableList<ObjectIntPair<T>> AbstractImmutableSortedBag.occurrencesSortingBy(int n, IntFunction<ObjectIntPair<T>> function) ImmutableSortedBagImpl.toSortedList() -
Uses of MutableList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableListModifier and TypeMethodDescriptionSynchronizedSortedBag.bottomOccurrences(int count) UnmodifiableSortedBag.bottomOccurrences(int count) <V> MutableList<V> <V> MutableList<V> <V> MutableList<V> <V> MutableList<V> AbstractMutableSortedBag.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableList<V> SynchronizedSortedBag.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableList<V> UnmodifiableSortedBag.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <P,V> MutableList <V> AbstractMutableSortedBag.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,V> MutableList <V> SynchronizedSortedBag.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,A> MutableList <A> UnmodifiableSortedBag.collectWith(Function2<? super T, ? super P, ? extends A> function, P parameter) <V> MutableList<V> AbstractMutableSortedBag.collectWithIndex(ObjectIntToObjectFunction<? super T, ? extends V> function) <V> MutableList<V> SynchronizedSortedBag.collectWithIndex(ObjectIntToObjectFunction<? super T, ? extends V> function) <V> MutableList<V> UnmodifiableSortedBag.collectWithIndex(ObjectIntToObjectFunction<? super T, ? extends V> function) <V> MutableList<V> AbstractMutableSortedBag.collectWithOccurrences(ObjectIntToObjectFunction<? super T, ? extends V> function) <V> MutableList<V> SynchronizedSortedBag.collectWithOccurrences(ObjectIntToObjectFunction<? super T, ? extends V> function) <V> MutableList<V> UnmodifiableSortedBag.collectWithOccurrences(ObjectIntToObjectFunction<? super T, ? extends V> function) <V> MutableList<V> AbstractMutableSortedBag.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableList<V> SynchronizedSortedBag.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableList<V> UnmodifiableSortedBag.flatCollect(Function<? super T, ? extends Iterable<V>> function) SynchronizedSortedBag.topOccurrences(int count) UnmodifiableSortedBag.topOccurrences(int count) <S> MutableList<Pair<T, S>> <S> MutableList<Pair<T, S>> <S> MutableList<Pair<T, S>> -
Uses of MutableList in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap that return MutableListModifier and TypeMethodDescriptionAbstractBiMap.toList()AbstractBiMap.toSortedList()AbstractBiMap.toSortedList(Comparator<? super V> comparator) -
Uses of MutableList in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableListModifier and TypeMethodDescriptionUnmodifiableBiMap.toList()UnmodifiableBiMap.toSortedList()UnmodifiableBiMap.toSortedList(Comparator<? super V> comparator) -
Uses of MutableList in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement interfaces with type arguments of type MutableListMethods in org.eclipse.collections.impl.block.factory that return MutableListMethods in org.eclipse.collections.impl.block.factory that return types with arguments of type MutableList -
Uses of MutableList in org.eclipse.collections.impl.block.function
Fields in org.eclipse.collections.impl.block.function declared as MutableList -
Uses of MutableList in org.eclipse.collections.impl.block.function.primitive
Fields in org.eclipse.collections.impl.block.function.primitive declared as MutableListModifier and TypeFieldDescriptionprivate final MutableList<Pair<BooleanPredicate, BooleanToObjectFunction<? extends V>>> BooleanCaseFunction.predicateFunctionsprivate final MutableList<Pair<BytePredicate, ByteToObjectFunction<? extends V>>> ByteCaseFunction.predicateFunctionsprivate final MutableList<Pair<CharPredicate, CharToObjectFunction<? extends V>>> CharCaseFunction.predicateFunctionsprivate final MutableList<Pair<DoublePredicate, DoubleToObjectFunction<? extends V>>> DoubleCaseFunction.predicateFunctionsprivate final MutableList<Pair<FloatPredicate, FloatToObjectFunction<? extends V>>> FloatCaseFunction.predicateFunctionsprivate final MutableList<Pair<IntPredicate, IntToObjectFunction<? extends V>>> IntCaseFunction.predicateFunctionsprivate final MutableList<Pair<LongPredicate, LongToObjectFunction<? extends V>>> LongCaseFunction.predicateFunctionsprivate final MutableList<Pair<ShortPredicate, ShortToObjectFunction<? extends V>>> ShortCaseFunction.predicateFunctions -
Uses of MutableList in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as MutableListModifier and TypeFieldDescriptionprivate final MutableList<Pair<BooleanPredicate, BooleanProcedure>> BooleanCaseProcedure.predicateProceduresprivate final MutableList<Pair<BytePredicate, ByteProcedure>> ByteCaseProcedure.predicateProceduresprivate final MutableList<Pair<CharPredicate, CharProcedure>> CharCaseProcedure.predicateProceduresprivate final MutableList<Pair<DoublePredicate, DoubleProcedure>> DoubleCaseProcedure.predicateProceduresprivate final MutableList<Pair<FloatPredicate, FloatProcedure>> FloatCaseProcedure.predicateProceduresprivate final MutableList<Pair<IntPredicate, IntProcedure>> IntCaseProcedure.predicateProceduresprivate final MutableList<Pair<LongPredicate, LongProcedure>> LongCaseProcedure.predicateProceduresprivate final MutableList<Pair<ShortPredicate, ShortProcedure>> ShortCaseProcedure.predicateProcedures -
Uses of MutableList in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return MutableListModifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.toList()AbstractSynchronizedRichIterable.toSortedList()AbstractSynchronizedRichIterable.toSortedList(Comparator<? super T> comparator) <V extends Comparable<? super V>>
MutableList<T> AbstractSynchronizedRichIterable.toSortedListBy(Function<? super T, ? extends V> function) -
Uses of MutableList in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return MutableListModifier and TypeMethodDescriptionAbstractCollectionAdapter.toList()AbstractMultiReaderMutableCollection.toList()AbstractMultiReaderMutableCollection.UntouchableMutableCollection.toList()AbstractUnmodifiableMutableCollection.toList()AbstractCollectionAdapter.toSortedList(Comparator<? super T> comparator) AbstractMultiReaderMutableCollection.toSortedList()AbstractMultiReaderMutableCollection.toSortedList(Comparator<? super T> comparator) AbstractMultiReaderMutableCollection.UntouchableMutableCollection.toSortedList()AbstractMultiReaderMutableCollection.UntouchableMutableCollection.toSortedList(Comparator<? super T> comparator) AbstractUnmodifiableMutableCollection.toSortedList()AbstractUnmodifiableMutableCollection.toSortedList(Comparator<? super T> comparator) <V extends Comparable<? super V>>
MutableList<T> AbstractMultiReaderMutableCollection.toSortedListBy(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableList<T> AbstractMultiReaderMutableCollection.UntouchableMutableCollection.toSortedListBy(Function<? super T, ? extends V> function) static <E> MutableList<E> Methods in org.eclipse.collections.impl.collection.mutable that return types with arguments of type MutableListModifier and TypeMethodDescription<P> Twin<MutableList<T>> AbstractCollectionAdapter.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractMultiReaderMutableCollection.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractMultiReaderMutableCollection.UntouchableMutableCollection.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractMutableCollection.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractSynchronizedMutableCollection.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractUnmodifiableMutableCollection.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of MutableList in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type MutableListModifier and TypeMethodDescriptionstatic <T> Collector<T, ?, MutableList<MutableList<T>>> Collectors2.chunk(int size) Partitions elements in fixed size chunks.static <T> Collector<T, ?, MutableList<MutableList<T>>> Collectors2.chunk(int size) Partitions elements in fixed size chunks.static <T> Collector<T, ?, MutableList<T>> Collectors2.toList()Returns the elements as a MutableList.static <T> Collector<T, ?, MutableList<T>> Collectors2.toSortedList()Returns the elements as a MutableList that has been sorted.static <T> Collector<T, ?, MutableList<T>> Collectors2.toSortedList(Comparator<? super T> comparator) Returns the elements as a MutableList that has been sorted using the specified comparator.static <T, V extends Comparable<? super V>>
Collector<T, ?, MutableList<T>> Collectors2.toSortedListBy(Function<? super T, ? extends V> function) Returns the elements as a MutableList that has been sorted using the specified comparator.static <T,S> Collector <T, ?, MutableList<Pair<T, S>>> Returns aMutableListformed from this stream of elements and anotherIterableby combining corresponding elements in pairs.static <T> Collector<T, ?, MutableList<ObjectIntPair<T>>> Collectors2.zipWithIndex()Returns aMutableListof pairs formed from this stream of elements its indices. -
Uses of MutableList in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return MutableListModifier and TypeMethodDescriptionstatic <T> MutableList<T> static <T> MutableList<T> Iterables.mList()static <T> MutableList<T> Iterables.mList(T... elements) -
Uses of MutableList in org.eclipse.collections.impl.lazy
Fields in org.eclipse.collections.impl.lazy declared as MutableListModifier and TypeFieldDescriptionprivate final MutableList<Iterable<E>> CompositeIterable.iterablesConstructors in org.eclipse.collections.impl.lazy with parameters of type MutableListModifierConstructorDescriptionprivateCompositeIterable(MutableList<Iterable<E>> newIterables) privateCompositeIterator(MutableList<Iterable<E>> iterables) -
Uses of MutableList in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel that return MutableListModifier and TypeMethodDescriptionAbstractMultiReaderParallelIterable.toList()AbstractParallelIterable.toList()AbstractSynchronizedParallelIterable.toList()NonParallelIterable.toList()AbstractMultiReaderParallelIterable.toSortedList()AbstractMultiReaderParallelIterable.toSortedList(Comparator<? super T> comparator) AbstractParallelIterable.toSortedList(Comparator<? super T> comparator) AbstractSynchronizedParallelIterable.toSortedList()AbstractSynchronizedParallelIterable.toSortedList(Comparator<? super T> comparator) NonParallelIterable.toSortedList()NonParallelIterable.toSortedList(Comparator<? super T> comparator) <V extends Comparable<? super V>>
MutableList<T> AbstractMultiReaderParallelIterable.toSortedListBy(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableList<T> AbstractParallelIterable.toSortedListBy(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableList<T> AbstractSynchronizedParallelIterable.toSortedListBy(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableList<T> NonParallelIterable.toSortedListBy(Function<? super T, ? extends V> function) -
Uses of MutableList in org.eclipse.collections.impl.list
Methods in org.eclipse.collections.impl.list that return MutableListModifier and TypeMethodDescriptionInterval.toList()static MutableList<Integer> Interval.toReverseList(int from, int to) Returns a MutableList representing the Integer values from the value from to the value to in reverse. -
Uses of MutableList in org.eclipse.collections.impl.list.fixed
Classes in org.eclipse.collections.impl.list.fixed that implement MutableListModifier and TypeClassDescriptionclassclassprivate static classfinal classArrayAdapter<T>This class provides a MutableList wrapper around an array.(package private) final classA DoubletonList is a two-element memory efficient List.(package private) final classEmptyList<T>This class is a memory efficient list with no elements.(package private) final classThis is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).(package private) final classThis is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).(package private) final classThis is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).(package private) final classThis class is a memory efficient list with one element.(package private) final classThis is a three element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three).Methods in org.eclipse.collections.impl.list.fixed that return MutableListModifier and TypeMethodDescription<V> MutableList<V> <P,A> MutableList <A> AbstractArrayAdapter.collectWith(Function2<? super T, ? super P, ? extends A> function, P parameter) AbstractArrayAdapter.distinct()AbstractArrayAdapter.distinct(HashingStrategy<? super T> hashingStrategy) AbstractArrayAdapter.drop(int count) <V> MutableList<V> AbstractArrayAdapter.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V extends Comparable<? super V>>
MutableList<T> EmptyList.sortThisBy(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableList<T> SingletonList.sortThisBy(Function<? super T, ? extends V> function) EmptyList.sortThisByBoolean(BooleanFunction<? super T> function) SingletonList.sortThisByBoolean(BooleanFunction<? super T> function) EmptyList.sortThisByByte(ByteFunction<? super T> function) SingletonList.sortThisByByte(ByteFunction<? super T> function) EmptyList.sortThisByChar(CharFunction<? super T> function) SingletonList.sortThisByChar(CharFunction<? super T> function) EmptyList.sortThisByDouble(DoubleFunction<? super T> function) SingletonList.sortThisByDouble(DoubleFunction<? super T> function) EmptyList.sortThisByFloat(FloatFunction<? super T> function) SingletonList.sortThisByFloat(FloatFunction<? super T> function) EmptyList.sortThisByInt(IntFunction<? super T> function) SingletonList.sortThisByInt(IntFunction<? super T> function) EmptyList.sortThisByLong(LongFunction<? super T> function) SingletonList.sortThisByLong(LongFunction<? super T> function) EmptyList.sortThisByShort(ShortFunction<? super T> function) SingletonList.sortThisByShort(ShortFunction<? super T> function) AbstractArrayAdapter.subList(int fromIndex, int toIndex) AbstractMemoryEfficientMutableList.subList(int fromIndex, int toIndex) AbstractArrayAdapter.take(int count) AbstractMemoryEfficientMutableList.withoutAll(Iterable<? extends T> elements) <S> MutableList<Pair<T, S>> EmptyList.zipWithIndex()Methods in org.eclipse.collections.impl.list.fixed that return types with arguments of type MutableListModifier and TypeMethodDescription<P> Twin<MutableList<T>> AbstractArrayAdapter.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of MutableList in org.eclipse.collections.impl.list.mutable
Classes in org.eclipse.collections.impl.list.mutable that implement MutableListModifier and TypeClassDescriptionclassclassprotected static classfinal classThis class provides a MutableList wrapper around a JDK Collections ArrayList instance.final classCompositeFastList behaves like a list, but is composed of at least one list.classFastList<T>FastList is an attempt to provide the same functionality as ArrayList without the support for concurrent modification exceptions.final classListAdapter<T>This class provides a MutableList wrapper around a JDK Collections List interface instance.final classMultiReadFastList provides a thread-safe wrapper around a FastList, using a ReentrantReadWriteLock.(package private) static final classfinal classThis class provides a MutableList wrapper around a JDK Collections List interface instance.classA synchronized view of aMutableList.classAn unmodifiable view of a list.private static final classFields in org.eclipse.collections.impl.list.mutable declared as MutableListModifier and TypeFieldDescriptionprivate MutableList<T> MultiReaderFastList.delegateprivate final MutableList<MultiReaderFastList.UntouchableListIterator<T>> MultiReaderFastList.UntouchableMutableList.requestedIteratorsprivate final MutableList<MultiReaderFastList.UntouchableMutableList<T>> MultiReaderFastList.UntouchableMutableList.requestedSubListsMethods in org.eclipse.collections.impl.list.mutable that return MutableListModifier and TypeMethodDescriptionstatic <E> MutableList<E> static <E> MutableList<E> AbstractMutableList.asSynchronized()ArrayListAdapter.asSynchronized()ListAdapter.asSynchronized()MultiReaderFastList.asSynchronized()MultiReaderFastList.UntouchableMutableList.asSynchronized()RandomAccessListAdapter.asSynchronized()SynchronizedMutableList.asSynchronized()UnmodifiableMutableList.asSynchronized()AbstractMutableList.asUnmodifiable()ArrayListAdapter.asUnmodifiable()ListAdapter.asUnmodifiable()MultiReaderFastList.asUnmodifiable()MultiReaderFastList.UntouchableMutableList.asUnmodifiable()RandomAccessListAdapter.asUnmodifiable()SynchronizedMutableList.asUnmodifiable()UnmodifiableMutableList.asUnmodifiable()AbstractListAdapter.clone()AbstractMutableList.clone()AbstractMutableList.SubList.clone()CompositeFastList.clone()ListAdapter.clone()MultiReaderFastList.UntouchableMutableList.clone()RandomAccessListAdapter.clone()SynchronizedMutableList.clone()<V> MutableList<V> <V> MutableList<V> <V> MutableList<V> <V> MutableList<V> <V> MutableList<V> <V> MutableList<V> <V> MutableList<V> AbstractListAdapter.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableList<V> MultiReaderFastList.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableList<V> MultiReaderFastList.UntouchableMutableList.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableList<V> RandomAccessListAdapter.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableList<V> SynchronizedMutableList.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableList<V> UnmodifiableMutableList.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <P,V> MutableList <V> AbstractListAdapter.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,V> MutableList <V> MultiReaderFastList.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,V> MutableList <V> MultiReaderFastList.UntouchableMutableList.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,V> MutableList <V> RandomAccessListAdapter.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,V> MutableList <V> SynchronizedMutableList.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,A> MutableList <A> UnmodifiableMutableList.collectWith(Function2<? super T, ? super P, ? extends A> function, P parameter) <V> MutableList<V> FastList.collectWithIndex(ObjectIntToObjectFunction<? super T, ? extends V> function) <V> MutableList<V> SynchronizedMutableList.collectWithIndex(ObjectIntToObjectFunction<? super T, ? extends V> function) AbstractMutableList.distinct()AbstractMutableList.distinct(HashingStrategy<? super T> hashingStrategy) FastList.distinct()FastList.distinct(HashingStrategy<? super T> hashingStrategy) ListAdapter.distinct()ListAdapter.distinct(HashingStrategy<? super T> hashingStrategy) MultiReaderFastList.distinct()MultiReaderFastList.distinct(HashingStrategy<? super T> hashingStrategy) MultiReaderFastList.UntouchableMutableList.distinct()MultiReaderFastList.UntouchableMutableList.distinct(HashingStrategy<? super T> hashingStrategy) RandomAccessListAdapter.distinct()RandomAccessListAdapter.distinct(HashingStrategy<? super T> hashingStrategy) SynchronizedMutableList.distinct()SynchronizedMutableList.distinct(HashingStrategy<? super T> hashingStrategy) UnmodifiableMutableList.distinct()UnmodifiableMutableList.distinct(HashingStrategy<? super T> hashingStrategy) <V> MutableList<T> AbstractListAdapter.distinctBy(Function<? super T, ? extends V> function) <V> MutableList<T> AbstractMutableList.distinctBy(Function<? super T, ? extends V> function) <V> MutableList<T> MultiReaderFastList.distinctBy(Function<? super T, ? extends V> function) <V> MutableList<T> MultiReaderFastList.UntouchableMutableList.distinctBy(Function<? super T, ? extends V> function) <V> MutableList<T> SynchronizedMutableList.distinctBy(Function<? super T, ? extends V> function) <V> MutableList<T> UnmodifiableMutableList.distinctBy(Function<? super T, ? extends V> function) AbstractMutableList.drop(int count) ArrayListAdapter.drop(int count) FastList.drop(int count) ListAdapter.drop(int count) MultiReaderFastList.drop(int count) MultiReaderFastList.UntouchableMutableList.drop(int count) RandomAccessListAdapter.drop(int count) SynchronizedMutableList.drop(int count) UnmodifiableMutableList.drop(int count) <T> MutableList<T> MutableListFactoryImpl.empty()<V> MutableList<V> AbstractListAdapter.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableList<V> MultiReaderFastList.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableList<V> MultiReaderFastList.UntouchableMutableList.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableList<V> RandomAccessListAdapter.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableList<V> SynchronizedMutableList.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableList<V> UnmodifiableMutableList.flatCollect(Function<? super T, ? extends Iterable<V>> function) <T> MutableList<T> MutableListFactoryImpl.fromStream(Stream<? extends T> stream) protected MutableList<T> MultiReaderFastList.getDelegate()protected MutableList<T> MultiReaderFastList.UntouchableMutableList.getDelegate()protected MutableList<T> SynchronizedMutableList.getDelegate()private MutableList<T> UnmodifiableMutableList.getMutableList()AbstractMutableList.newEmpty()ListAdapter.newEmpty()Deprecated.useFastList.newList()instead (inlineable)MultiReaderFastList.UntouchableMutableList.newEmpty()RandomAccessListAdapter.newEmpty()Deprecated.useFastList.newList()instead (inlineable)SynchronizedMutableList.newEmpty()UnmodifiableMutableList.newEmpty()<P> MutableList<T> AbstractListAdapter.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> MultiReaderFastList.UntouchableMutableList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> RandomAccessListAdapter.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> SynchronizedMutableList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> UnmodifiableMutableList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) FastList.rejectWithIndex(ObjectIntPredicate<? super T> predicate) SynchronizedMutableList.rejectWithIndex(ObjectIntPredicate<? super T> predicate) MultiReaderFastList.UntouchableMutableList.reverseThis()SynchronizedMutableList.reverseThis()UnmodifiableMutableList.reverseThis()<S> MutableList<S> AbstractListAdapter.selectInstancesOf(Class<S> clazz) <S> MutableList<S> AbstractMutableList.selectInstancesOf(Class<S> clazz) <S> MutableList<S> ArrayListAdapter.selectInstancesOf(Class<S> clazz) <S> MutableList<S> ListAdapter.selectInstancesOf(Class<S> clazz) <S> MutableList<S> MultiReaderFastList.selectInstancesOf(Class<S> clazz) <S> MutableList<S> MultiReaderFastList.UntouchableMutableList.selectInstancesOf(Class<S> clazz) <S> MutableList<S> RandomAccessListAdapter.selectInstancesOf(Class<S> clazz) <S> MutableList<S> SynchronizedMutableList.selectInstancesOf(Class<S> clazz) <S> MutableList<S> UnmodifiableMutableList.selectInstancesOf(Class<S> clazz) <P> MutableList<T> AbstractListAdapter.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> MultiReaderFastList.UntouchableMutableList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> RandomAccessListAdapter.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> SynchronizedMutableList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> UnmodifiableMutableList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) FastList.selectWithIndex(ObjectIntPredicate<? super T> predicate) SynchronizedMutableList.selectWithIndex(ObjectIntPredicate<? super T> predicate) MultiReaderFastList.UntouchableMutableList.shuffleThis()MultiReaderFastList.UntouchableMutableList.shuffleThis(Random rnd) SynchronizedMutableList.shuffleThis()SynchronizedMutableList.shuffleThis(Random rnd) UnmodifiableMutableList.shuffleThis()UnmodifiableMutableList.shuffleThis(Random rnd) MultiReaderFastList.UntouchableMutableList.sortThis()MultiReaderFastList.UntouchableMutableList.sortThis(Comparator<? super T> comparator) SynchronizedMutableList.sortThis()SynchronizedMutableList.sortThis(Comparator<? super T> comparator) <V extends Comparable<? super V>>
MutableList<T> MultiReaderFastList.UntouchableMutableList.sortThisBy(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableList<T> SynchronizedMutableList.sortThisBy(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableList<T> UnmodifiableMutableList.sortThisBy(Function<? super T, ? extends V> function) AbstractListAdapter.sortThisByBoolean(BooleanFunction<? super T> function) AbstractMutableList.sortThisByBoolean(BooleanFunction<? super T> function) MultiReaderFastList.UntouchableMutableList.sortThisByBoolean(BooleanFunction<? super T> function) SynchronizedMutableList.sortThisByBoolean(BooleanFunction<? super T> function) UnmodifiableMutableList.sortThisByBoolean(BooleanFunction<? super T> function) AbstractListAdapter.sortThisByByte(ByteFunction<? super T> function) AbstractMutableList.sortThisByByte(ByteFunction<? super T> function) MultiReaderFastList.UntouchableMutableList.sortThisByByte(ByteFunction<? super T> function) SynchronizedMutableList.sortThisByByte(ByteFunction<? super T> function) UnmodifiableMutableList.sortThisByByte(ByteFunction<? super T> function) AbstractListAdapter.sortThisByChar(CharFunction<? super T> function) AbstractMutableList.sortThisByChar(CharFunction<? super T> function) MultiReaderFastList.UntouchableMutableList.sortThisByChar(CharFunction<? super T> function) SynchronizedMutableList.sortThisByChar(CharFunction<? super T> function) UnmodifiableMutableList.sortThisByChar(CharFunction<? super T> function) AbstractListAdapter.sortThisByDouble(DoubleFunction<? super T> function) AbstractMutableList.sortThisByDouble(DoubleFunction<? super T> function) MultiReaderFastList.UntouchableMutableList.sortThisByDouble(DoubleFunction<? super T> function) SynchronizedMutableList.sortThisByDouble(DoubleFunction<? super T> function) UnmodifiableMutableList.sortThisByDouble(DoubleFunction<? super T> function) AbstractListAdapter.sortThisByFloat(FloatFunction<? super T> function) AbstractMutableList.sortThisByFloat(FloatFunction<? super T> function) MultiReaderFastList.UntouchableMutableList.sortThisByFloat(FloatFunction<? super T> function) SynchronizedMutableList.sortThisByFloat(FloatFunction<? super T> function) UnmodifiableMutableList.sortThisByFloat(FloatFunction<? super T> function) AbstractListAdapter.sortThisByInt(IntFunction<? super T> function) AbstractMutableList.sortThisByInt(IntFunction<? super T> function) MultiReaderFastList.UntouchableMutableList.sortThisByInt(IntFunction<? super T> function) SynchronizedMutableList.sortThisByInt(IntFunction<? super T> function) UnmodifiableMutableList.sortThisByInt(IntFunction<? super T> function) AbstractListAdapter.sortThisByLong(LongFunction<? super T> function) AbstractMutableList.sortThisByLong(LongFunction<? super T> function) MultiReaderFastList.UntouchableMutableList.sortThisByLong(LongFunction<? super T> function) SynchronizedMutableList.sortThisByLong(LongFunction<? super T> function) UnmodifiableMutableList.sortThisByLong(LongFunction<? super T> function) AbstractListAdapter.sortThisByShort(ShortFunction<? super T> function) AbstractMutableList.sortThisByShort(ShortFunction<? super T> function) MultiReaderFastList.UntouchableMutableList.sortThisByShort(ShortFunction<? super T> function) SynchronizedMutableList.sortThisByShort(ShortFunction<? super T> function) UnmodifiableMutableList.sortThisByShort(ShortFunction<? super T> function) AbstractListAdapter.subList(int fromIndex, int toIndex) AbstractMutableList.subList(int fromIndex, int toIndex) AbstractMutableList.SubList.subList(int fromIndex, int toIndex) MultiReaderFastList.UntouchableMutableList.subList(int fromIndex, int toIndex) SynchronizedMutableList.subList(int fromIndex, int toIndex) AbstractMutableList.take(int count) ArrayListAdapter.take(int count) FastList.take(int count) ListAdapter.take(int count) MultiReaderFastList.take(int count) MultiReaderFastList.UntouchableMutableList.take(int count) RandomAccessListAdapter.take(int count) SynchronizedMutableList.take(int count) UnmodifiableMutableList.take(int count) AbstractMutableList.SubList.toReversed()MultiReaderFastList.toReversed()MultiReaderFastList.UntouchableMutableList.toReversed()SynchronizedMutableList.toReversed()UnmodifiableMutableList.toReversed()AbstractMutableList.toSortedList()<T> MutableList<T> MutableListFactoryImpl.with(T... items) Creates a new list using the passeditemsargument as the backing store.<T> MutableList<T> <T> MutableList<T> MutableListFactoryImpl.withInitialCapacity(int capacity) <T> MutableList<T> MutableListFactoryImpl.withNValues(int size, Function0<? extends T> factory) MultiReaderFastList.UntouchableMutableList.withoutAll(Iterable<? extends T> elements) UnmodifiableMutableList.withoutAll(Iterable<? extends T> elements) <S> MutableList<Pair<T, S>> <S> MutableList<Pair<T, S>> <S> MutableList<Pair<T, S>> <S> MutableList<Pair<T, S>> <S> MutableList<Pair<T, S>> <S> MutableList<Pair<T, S>> <S> MutableList<Pair<T, S>> <S> MutableList<Pair<T, S>> AbstractListAdapter.zipWithIndex()AbstractMutableList.zipWithIndex()ArrayListAdapter.zipWithIndex()MultiReaderFastList.UntouchableMutableList.zipWithIndex()MultiReaderFastList.zipWithIndex()RandomAccessListAdapter.zipWithIndex()SynchronizedMutableList.zipWithIndex()UnmodifiableMutableList.zipWithIndex()Methods in org.eclipse.collections.impl.list.mutable that return types with arguments of type MutableListModifier and TypeMethodDescription<P> Twin<MutableList<T>> AbstractMutableList.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> FastList.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) Method parameters in org.eclipse.collections.impl.list.mutable with type arguments of type MutableListModifier and TypeMethodDescriptionvoidMultiReaderFastList.withReadLockAndDelegate(Procedure<? super MutableList<T>> procedure) voidMultiReaderFastList.withWriteLockAndDelegate(Procedure<? super MutableList<T>> procedure) Constructors in org.eclipse.collections.impl.list.mutable with parameters of type MutableListModifierConstructorDescriptionprivateCompositeIterator(MutableList<FastList<E>> newLists) privateMultiReaderFastList(MutableList<T> newDelegate) privateMultiReaderFastList(MutableList<T> newDelegate, ReadWriteLock newLock) (package private)RandomAccessUnmodifiableMutableList(MutableList<? extends T> mutableList) (package private)SynchronizedMutableList(MutableList<T> newCollection) (package private)SynchronizedMutableList(MutableList<T> newCollection, Object newLock) (package private)UnmodifiableMutableList(MutableList<? extends T> mutableList) privateUntouchableMutableList(MutableList<T> delegate) -
Uses of MutableList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableListModifier and TypeClassDescriptionclassA boxed view of aMutableBooleanList.classA boxed view of aMutableByteList.classA boxed view of aMutableCharList.classA boxed view of aMutableDoubleList.classA boxed view of aMutableFloatList.classA boxed view of aMutableIntList.classA boxed view of aMutableLongList.classA boxed view of aMutableShortList.Methods in org.eclipse.collections.impl.list.mutable.primitive that return MutableListModifier and TypeMethodDescriptionBooleanArrayList.boxed()ByteArrayList.boxed()CharArrayList.boxed()DoubleArrayList.boxed()FloatArrayList.boxed()IntArrayList.boxed()LongArrayList.boxed()ShortArrayList.boxed()SynchronizedBooleanList.boxed()SynchronizedByteList.boxed()SynchronizedCharList.boxed()SynchronizedDoubleList.boxed()SynchronizedFloatList.boxed()SynchronizedIntList.boxed()SynchronizedLongList.boxed()SynchronizedShortList.boxed()UnmodifiableBooleanList.boxed()UnmodifiableByteList.boxed()UnmodifiableCharList.boxed()UnmodifiableDoubleList.boxed()UnmodifiableFloatList.boxed()UnmodifiableIntList.boxed()UnmodifiableLongList.boxed()UnmodifiableShortList.boxed()<V> MutableList<V> BooleanArrayList.collect(BooleanToObjectFunction<? extends V> function) <V> MutableList<V> ByteArrayList.collect(ByteToObjectFunction<? extends V> function) <V> MutableList<V> CharArrayList.collect(CharToObjectFunction<? extends V> function) <V> MutableList<V> DoubleArrayList.collect(DoubleToObjectFunction<? extends V> function) <V> MutableList<V> FloatArrayList.collect(FloatToObjectFunction<? extends V> function) <V> MutableList<V> IntArrayList.collect(IntToObjectFunction<? extends V> function) <V> MutableList<V> LongArrayList.collect(LongToObjectFunction<? extends V> function) <V> MutableList<V> ShortArrayList.collect(ShortToObjectFunction<? extends V> function) <V> MutableList<V> SynchronizedBooleanList.collect(BooleanToObjectFunction<? extends V> function) <V> MutableList<V> SynchronizedByteList.collect(ByteToObjectFunction<? extends V> function) <V> MutableList<V> SynchronizedCharList.collect(CharToObjectFunction<? extends V> function) <V> MutableList<V> SynchronizedDoubleList.collect(DoubleToObjectFunction<? extends V> function) <V> MutableList<V> SynchronizedFloatList.collect(FloatToObjectFunction<? extends V> function) <V> MutableList<V> SynchronizedIntList.collect(IntToObjectFunction<? extends V> function) <V> MutableList<V> SynchronizedLongList.collect(LongToObjectFunction<? extends V> function) <V> MutableList<V> SynchronizedShortList.collect(ShortToObjectFunction<? extends V> function) <V> MutableList<V> UnmodifiableBooleanList.collect(BooleanToObjectFunction<? extends V> function) <V> MutableList<V> UnmodifiableByteList.collect(ByteToObjectFunction<? extends V> function) <V> MutableList<V> UnmodifiableCharList.collect(CharToObjectFunction<? extends V> function) <V> MutableList<V> UnmodifiableDoubleList.collect(DoubleToObjectFunction<? extends V> function) <V> MutableList<V> UnmodifiableFloatList.collect(FloatToObjectFunction<? extends V> function) <V> MutableList<V> UnmodifiableIntList.collect(IntToObjectFunction<? extends V> function) <V> MutableList<V> UnmodifiableLongList.collect(LongToObjectFunction<? extends V> function) <V> MutableList<V> UnmodifiableShortList.collect(ShortToObjectFunction<? extends V> function) <V> MutableList<V> SynchronizedBooleanList.collectWithIndex(BooleanIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> SynchronizedByteList.collectWithIndex(ByteIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> SynchronizedCharList.collectWithIndex(CharIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> SynchronizedDoubleList.collectWithIndex(DoubleIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> SynchronizedFloatList.collectWithIndex(FloatIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> SynchronizedIntList.collectWithIndex(IntIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> SynchronizedLongList.collectWithIndex(LongIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> SynchronizedShortList.collectWithIndex(ShortIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> UnmodifiableBooleanList.collectWithIndex(BooleanIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> UnmodifiableByteList.collectWithIndex(ByteIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> UnmodifiableCharList.collectWithIndex(CharIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> UnmodifiableDoubleList.collectWithIndex(DoubleIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> UnmodifiableFloatList.collectWithIndex(FloatIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> UnmodifiableIntList.collectWithIndex(IntIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> UnmodifiableLongList.collectWithIndex(LongIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.<V> MutableList<V> UnmodifiableShortList.collectWithIndex(ShortIntToObjectFunction<? extends V> function) Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index.BoxedMutableBooleanList.subList(int fromIndex, int toIndex) BoxedMutableByteList.subList(int fromIndex, int toIndex) BoxedMutableCharList.subList(int fromIndex, int toIndex) BoxedMutableDoubleList.subList(int fromIndex, int toIndex) BoxedMutableFloatList.subList(int fromIndex, int toIndex) BoxedMutableIntList.subList(int fromIndex, int toIndex) BoxedMutableLongList.subList(int fromIndex, int toIndex) BoxedMutableShortList.subList(int fromIndex, int toIndex) <T> MutableList<ByteObjectPair<T>> <T> MutableList<CharObjectPair<T>> <T> MutableList<DoubleObjectPair<T>> <T> MutableList<FloatObjectPair<T>> <T> MutableList<IntObjectPair<T>> <T> MutableList<LongObjectPair<T>> <T> MutableList<ShortObjectPair<T>> <T> MutableList<BooleanObjectPair<T>> <T> MutableList<ByteObjectPair<T>> <T> MutableList<CharObjectPair<T>> <T> MutableList<DoubleObjectPair<T>> <T> MutableList<FloatObjectPair<T>> <T> MutableList<IntObjectPair<T>> <T> MutableList<LongObjectPair<T>> <T> MutableList<ShortObjectPair<T>> <T> MutableList<BooleanObjectPair<T>> <T> MutableList<ByteObjectPair<T>> <T> MutableList<CharObjectPair<T>> <T> MutableList<DoubleObjectPair<T>> <T> MutableList<FloatObjectPair<T>> <T> MutableList<IntObjectPair<T>> <T> MutableList<LongObjectPair<T>> <T> MutableList<ShortObjectPair<T>> SynchronizedBooleanList.zipBoolean(BooleanIterable iterable) UnmodifiableBooleanList.zipBoolean(BooleanIterable iterable) ByteArrayList.zipByte(ByteIterable iterable) SynchronizedByteList.zipByte(ByteIterable iterable) UnmodifiableByteList.zipByte(ByteIterable iterable) CharArrayList.zipChar(CharIterable iterable) SynchronizedCharList.zipChar(CharIterable iterable) UnmodifiableCharList.zipChar(CharIterable iterable) DoubleArrayList.zipDouble(DoubleIterable iterable) SynchronizedDoubleList.zipDouble(DoubleIterable iterable) UnmodifiableDoubleList.zipDouble(DoubleIterable iterable) FloatArrayList.zipFloat(FloatIterable iterable) SynchronizedFloatList.zipFloat(FloatIterable iterable) UnmodifiableFloatList.zipFloat(FloatIterable iterable) IntArrayList.zipInt(IntIterable iterable) SynchronizedIntList.zipInt(IntIterable iterable) UnmodifiableIntList.zipInt(IntIterable iterable) LongArrayList.zipLong(LongIterable iterable) SynchronizedLongList.zipLong(LongIterable iterable) UnmodifiableLongList.zipLong(LongIterable iterable) ShortArrayList.zipShort(ShortIterable iterable) SynchronizedShortList.zipShort(ShortIterable iterable) UnmodifiableShortList.zipShort(ShortIterable iterable) -
Uses of MutableList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableListModifier and TypeMethodDescriptionImmutableByteObjectEmptyMap.toList()ImmutableByteObjectHashMap.toList()ImmutableByteObjectSingletonMap.toList()ImmutableCharObjectEmptyMap.toList()ImmutableCharObjectHashMap.toList()ImmutableCharObjectSingletonMap.toList()ImmutableDoubleObjectEmptyMap.toList()ImmutableDoubleObjectHashMap.toList()ImmutableDoubleObjectSingletonMap.toList()ImmutableFloatObjectEmptyMap.toList()ImmutableFloatObjectHashMap.toList()ImmutableFloatObjectSingletonMap.toList()ImmutableIntObjectEmptyMap.toList()ImmutableIntObjectHashMap.toList()ImmutableIntObjectSingletonMap.toList()ImmutableLongObjectEmptyMap.toList()ImmutableLongObjectHashMap.toList()ImmutableLongObjectSingletonMap.toList()ImmutableShortObjectEmptyMap.toList()ImmutableShortObjectHashMap.toList()ImmutableShortObjectSingletonMap.toList()ImmutableByteObjectEmptyMap.toSortedList()ImmutableByteObjectEmptyMap.toSortedList(Comparator<? super V> comparator) ImmutableByteObjectHashMap.toSortedList()ImmutableByteObjectHashMap.toSortedList(Comparator<? super V> comparator) ImmutableByteObjectSingletonMap.toSortedList()ImmutableByteObjectSingletonMap.toSortedList(Comparator<? super V> comparator) ImmutableCharObjectEmptyMap.toSortedList()ImmutableCharObjectEmptyMap.toSortedList(Comparator<? super V> comparator) ImmutableCharObjectHashMap.toSortedList()ImmutableCharObjectHashMap.toSortedList(Comparator<? super V> comparator) ImmutableCharObjectSingletonMap.toSortedList()ImmutableCharObjectSingletonMap.toSortedList(Comparator<? super V> comparator) ImmutableDoubleObjectEmptyMap.toSortedList()ImmutableDoubleObjectEmptyMap.toSortedList(Comparator<? super V> comparator) ImmutableDoubleObjectHashMap.toSortedList()ImmutableDoubleObjectHashMap.toSortedList(Comparator<? super V> comparator) ImmutableDoubleObjectSingletonMap.toSortedList()ImmutableDoubleObjectSingletonMap.toSortedList(Comparator<? super V> comparator) ImmutableFloatObjectEmptyMap.toSortedList()ImmutableFloatObjectEmptyMap.toSortedList(Comparator<? super V> comparator) ImmutableFloatObjectHashMap.toSortedList()ImmutableFloatObjectHashMap.toSortedList(Comparator<? super V> comparator) ImmutableFloatObjectSingletonMap.toSortedList()ImmutableFloatObjectSingletonMap.toSortedList(Comparator<? super V> comparator) ImmutableIntObjectEmptyMap.toSortedList()ImmutableIntObjectEmptyMap.toSortedList(Comparator<? super V> comparator) ImmutableIntObjectHashMap.toSortedList()ImmutableIntObjectHashMap.toSortedList(Comparator<? super V> comparator) ImmutableIntObjectSingletonMap.toSortedList()ImmutableIntObjectSingletonMap.toSortedList(Comparator<? super V> comparator) ImmutableLongObjectEmptyMap.toSortedList()ImmutableLongObjectEmptyMap.toSortedList(Comparator<? super V> comparator) ImmutableLongObjectHashMap.toSortedList()ImmutableLongObjectHashMap.toSortedList(Comparator<? super V> comparator) ImmutableLongObjectSingletonMap.toSortedList()ImmutableLongObjectSingletonMap.toSortedList(Comparator<? super V> comparator) ImmutableShortObjectEmptyMap.toSortedList()ImmutableShortObjectEmptyMap.toSortedList(Comparator<? super V> comparator) ImmutableShortObjectHashMap.toSortedList()ImmutableShortObjectHashMap.toSortedList(Comparator<? super V> comparator) ImmutableShortObjectSingletonMap.toSortedList()ImmutableShortObjectSingletonMap.toSortedList(Comparator<? super V> comparator) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableByteObjectEmptyMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableByteObjectHashMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableByteObjectSingletonMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableCharObjectEmptyMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableCharObjectHashMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableCharObjectSingletonMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableDoubleObjectEmptyMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableDoubleObjectHashMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableDoubleObjectSingletonMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableFloatObjectEmptyMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableFloatObjectHashMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableFloatObjectSingletonMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableIntObjectEmptyMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableIntObjectHashMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableIntObjectSingletonMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableLongObjectEmptyMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableLongObjectHashMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableLongObjectSingletonMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableShortObjectEmptyMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableShortObjectHashMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> ImmutableShortObjectSingletonMap.toSortedListBy(Function<? super V, ? extends VV> function) -
Uses of MutableList in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableListModifier and TypeMethodDescriptionUnmodifiableMutableMap.toList()UnmodifiableMutableMap.toSortedList()UnmodifiableMutableMap.toSortedList(Comparator<? super V> comparator) Methods in org.eclipse.collections.impl.map.mutable with parameters of type MutableListModifier and TypeMethodDescriptionprivate voidUnifiedMap.ValuesCollection.chainedAddToList(Object[] chain, MutableList<V> replace) -
Uses of MutableList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableListModifier and TypeMethodDescriptionByteObjectHashMap.toList()CharObjectHashMap.toList()DoubleObjectHashMap.toList()FloatObjectHashMap.toList()IntObjectHashMap.toList()LongObjectHashMap.toList()ShortObjectHashMap.toList()SynchronizedByteObjectMap.toList()SynchronizedCharObjectMap.toList()SynchronizedDoubleObjectMap.toList()SynchronizedFloatObjectMap.toList()SynchronizedIntObjectMap.toList()SynchronizedLongObjectMap.toList()SynchronizedShortObjectMap.toList()UnmodifiableByteObjectMap.toList()UnmodifiableCharObjectMap.toList()UnmodifiableDoubleObjectMap.toList()UnmodifiableFloatObjectMap.toList()UnmodifiableIntObjectMap.toList()UnmodifiableLongObjectMap.toList()UnmodifiableShortObjectMap.toList()SynchronizedByteObjectMap.toSortedList()SynchronizedByteObjectMap.toSortedList(Comparator<? super V> comparator) SynchronizedCharObjectMap.toSortedList()SynchronizedCharObjectMap.toSortedList(Comparator<? super V> comparator) SynchronizedDoubleObjectMap.toSortedList()SynchronizedDoubleObjectMap.toSortedList(Comparator<? super V> comparator) SynchronizedFloatObjectMap.toSortedList()SynchronizedFloatObjectMap.toSortedList(Comparator<? super V> comparator) SynchronizedIntObjectMap.toSortedList()SynchronizedIntObjectMap.toSortedList(Comparator<? super V> comparator) SynchronizedLongObjectMap.toSortedList()SynchronizedLongObjectMap.toSortedList(Comparator<? super V> comparator) SynchronizedShortObjectMap.toSortedList()SynchronizedShortObjectMap.toSortedList(Comparator<? super V> comparator) UnmodifiableByteObjectMap.toSortedList()UnmodifiableByteObjectMap.toSortedList(Comparator<? super V> comparator) UnmodifiableCharObjectMap.toSortedList()UnmodifiableCharObjectMap.toSortedList(Comparator<? super V> comparator) UnmodifiableDoubleObjectMap.toSortedList()UnmodifiableDoubleObjectMap.toSortedList(Comparator<? super V> comparator) UnmodifiableFloatObjectMap.toSortedList()UnmodifiableFloatObjectMap.toSortedList(Comparator<? super V> comparator) UnmodifiableIntObjectMap.toSortedList()UnmodifiableIntObjectMap.toSortedList(Comparator<? super V> comparator) UnmodifiableLongObjectMap.toSortedList()UnmodifiableLongObjectMap.toSortedList(Comparator<? super V> comparator) UnmodifiableShortObjectMap.toSortedList()UnmodifiableShortObjectMap.toSortedList(Comparator<? super V> comparator) <VV extends Comparable<? super VV>>
MutableList<V> SynchronizedByteObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> SynchronizedCharObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> SynchronizedDoubleObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> SynchronizedFloatObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> SynchronizedIntObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> SynchronizedLongObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> SynchronizedShortObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> UnmodifiableByteObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> UnmodifiableCharObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> UnmodifiableDoubleObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> UnmodifiableFloatObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> UnmodifiableIntObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> UnmodifiableLongObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableList<V> UnmodifiableShortObjectMap.toSortedListBy(Function<? super V, ? extends VV> function) -
Uses of MutableList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableListModifier and TypeMethodDescription<R> MutableList<R> <VV> MutableList<VV> <R> MutableList<R> OrderedMapAdapter.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends R> function) <VV> MutableList<VV> UnmodifiableMutableOrderedMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends VV> function) <P,VV> MutableList <VV> OrderedMapAdapter.collectWith(Function2<? super V, ? super P, ? extends VV> function, P parameter) <P,VV> MutableList <VV> UnmodifiableMutableOrderedMap.collectWith(Function2<? super V, ? super P, ? extends VV> function, P parameter) OrderedMapAdapter.distinct()UnmodifiableMutableOrderedMap.distinct()<R> MutableList<R> OrderedMapAdapter.flatCollect(Function<? super V, ? extends Iterable<R>> function) <VV> MutableList<VV> UnmodifiableMutableOrderedMap.flatCollect(Function<? super V, ? extends Iterable<VV>> function) <P,VV> MutableList <VV> UnmodifiableMutableOrderedMap.flatCollectWith(Function2<? super V, ? super P, ? extends Iterable<VV>> function, P parameter) <P> MutableList<V> OrderedMapAdapter.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> UnmodifiableMutableOrderedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableList<S> OrderedMapAdapter.selectInstancesOf(Class<S> clazz) <S> MutableList<S> UnmodifiableMutableOrderedMap.selectInstancesOf(Class<S> clazz) <P> MutableList<V> OrderedMapAdapter.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> UnmodifiableMutableOrderedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableMutableOrderedMap.toList()UnmodifiableMutableOrderedMap.toSortedList()UnmodifiableMutableOrderedMap.toSortedList(Comparator<? super V> comparator) <S> MutableList<Pair<V, S>> <S> MutableList<Pair<V, S>> OrderedMapAdapter.zipWithIndex()UnmodifiableMutableOrderedMap.zipWithIndex() -
Uses of MutableList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableListModifier and TypeMethodDescription<R> MutableList<R> <R> MutableList<R> <R> MutableList<R> <R> MutableList<R> AbstractMutableSortedMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends R> function) <R> MutableList<R> SynchronizedSortedMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends R> function) <R> MutableList<R> UnmodifiableTreeMap.collectIf(Predicate<? super V> predicate, Function<? super V, ? extends R> function) <P,VV> MutableList <VV> AbstractMutableSortedMap.collectWith(Function2<? super V, ? super P, ? extends VV> function, P parameter) <P,VV> MutableList <VV> SynchronizedSortedMap.collectWith(Function2<? super V, ? super P, ? extends VV> function, P parameter) <P,VV> MutableList <VV> UnmodifiableTreeMap.collectWith(Function2<? super V, ? super P, ? extends VV> function, P parameter) <R> MutableList<R> SynchronizedSortedMap.collectWithIndex(ObjectIntToObjectFunction<? super V, ? extends R> function) <R> MutableList<R> UnmodifiableTreeMap.collectWithIndex(ObjectIntToObjectFunction<? super V, ? extends R> function) SortedMapAdapter.distinct()SynchronizedSortedMap.distinct()TreeSortedMap.distinct()UnmodifiableTreeMap.distinct()<R> MutableList<R> AbstractMutableSortedMap.flatCollect(Function<? super V, ? extends Iterable<R>> function) <R> MutableList<R> SynchronizedSortedMap.flatCollect(Function<? super V, ? extends Iterable<R>> function) <R> MutableList<R> UnmodifiableTreeMap.flatCollect(Function<? super V, ? extends Iterable<R>> function) <P> MutableList<V> AbstractMutableSortedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> SynchronizedSortedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> UnmodifiableTreeMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableList<S> AbstractMutableSortedMap.selectInstancesOf(Class<S> clazz) <S> MutableList<S> SynchronizedSortedMap.selectInstancesOf(Class<S> clazz) <S> MutableList<S> UnmodifiableTreeMap.selectInstancesOf(Class<S> clazz) <P> MutableList<V> AbstractMutableSortedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> SynchronizedSortedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> UnmodifiableTreeMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableTreeMap.toList()UnmodifiableTreeMap.toSortedList()UnmodifiableTreeMap.toSortedList(Comparator<? super V> comparator) <S> MutableList<Pair<V, S>> <S> MutableList<Pair<V, S>> <S> MutableList<Pair<V, S>> AbstractMutableSortedMap.zipWithIndex()SynchronizedSortedMap.zipWithIndex()UnmodifiableTreeMap.zipWithIndex() -
Uses of MutableList in org.eclipse.collections.impl.map.strategy.mutable
Methods in org.eclipse.collections.impl.map.strategy.mutable with parameters of type MutableListModifier and TypeMethodDescriptionprivate voidUnifiedMapWithHashingStrategy.ValuesCollection.chainedAddToList(Object[] chain, MutableList<V> replace) -
Uses of MutableList in org.eclipse.collections.impl.multimap.list
Subclasses with type arguments of type MutableList in org.eclipse.collections.impl.multimap.listModifier and TypeClassDescriptionclassfinal classA Multimap that is optimized for parallel writes, but is not protected for concurrent reads.Methods in org.eclipse.collections.impl.multimap.list that return MutableListModifier and TypeMethodDescriptionprotected MutableList<V> FastListMultimap.createCollection()protected MutableList<V> MultiReaderFastListMultimap.createCollection()protected MutableList<V> SynchronizedPutFastListMultimap.createCollection()SynchronizedListMultimap.getIfAbsentPutAll(K key, Iterable<? extends V> values) SynchronizedListMultimap.replaceValues(K key, Iterable<? extends V> values) Methods in org.eclipse.collections.impl.multimap.list that return types with arguments of type MutableListModifier and TypeMethodDescriptionprotected AbstractMutableMultimap<K, V, MutableList<V>> ImmutableListMultimapImpl.ImmutableListMultimapSerializationProxy.createEmptyMutableMultimap()protected MutableMap<K, MutableList<V>> FastListMultimap.createMap()protected MutableMap<K, MutableList<V>> MultiReaderFastListMultimap.createMap()protected MutableMap<K, MutableList<V>> FastListMultimap.createMapWithKeyCount(int keyCount) protected MutableMap<K, MutableList<V>> MultiReaderFastListMultimap.createMapWithKeyCount(int keyCount) Method parameters in org.eclipse.collections.impl.multimap.list with type arguments of type MutableListModifier and TypeMethodDescriptionvoidAbstractMutableListMultimap.forEachKeyMutableList(Procedure2<? super K, ? super MutableList<V>> procedure) voidSynchronizedListMultimap.forEachKeyMutableList(Procedure2<? super K, ? super MutableList<V>> procedure) voidSynchronizedPutFastListMultimap.forEachKeyMutableList(Procedure2<? super K, ? super MutableList<V>> procedure) -
Uses of MutableList in org.eclipse.collections.impl.partition.list
Fields in org.eclipse.collections.impl.partition.list declared as MutableListModifier and TypeFieldDescriptionprivate final MutableList<T> PartitionFastList.rejectedprivate final MutableList<T> PartitionFastList.selectedMethods in org.eclipse.collections.impl.partition.list that return MutableListModifier and TypeMethodDescriptionPartitionFastList.getRejected()PartitionFastList.getSelected() -
Uses of MutableList in org.eclipse.collections.impl.partition.stack
Fields in org.eclipse.collections.impl.partition.stack declared as MutableListModifier and TypeFieldDescriptionprivate final MutableList<T> PartitionArrayStack.rejectedprivate final MutableList<T> PartitionArrayStack.selected -
Uses of MutableList in org.eclipse.collections.impl.set.mutable
Fields in org.eclipse.collections.impl.set.mutable declared as MutableListModifier and TypeFieldDescriptionprivate final MutableList<MultiReaderUnifiedSet.UntouchableIterator<T>> MultiReaderUnifiedSet.UntouchableMutableSet.requestedIteratorsMethods in org.eclipse.collections.impl.set.mutable that return types with arguments of type MutableListModifier and TypeMethodDescription<P> Twin<MutableList<T>> UnifiedSet.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of MutableList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableListModifier and TypeMethodDescription<V> MutableList<V> <V> MutableList<V> <V> MutableList<V> <V> MutableList<V> <V> MutableList<V> SortedSetAdapter.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableList<V> SynchronizedSortedSet.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableList<V> <V> MutableList<V> UnmodifiableSortedSet.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <P,V> MutableList <V> SortedSetAdapter.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,V> MutableList <V> SynchronizedSortedSet.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,V> MutableList <V> TreeSortedSet.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,A> MutableList <A> UnmodifiableSortedSet.collectWith(Function2<? super T, ? super P, ? extends A> function, P parameter) <V> MutableList<V> SynchronizedSortedSet.collectWithIndex(ObjectIntToObjectFunction<? super T, ? extends V> function) <V> MutableList<V> UnmodifiableSortedSet.collectWithIndex(ObjectIntToObjectFunction<? super T, ? extends V> function) <V> MutableList<V> SortedSetAdapter.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableList<V> SynchronizedSortedSet.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableList<V> TreeSortedSet.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableList<V> UnmodifiableSortedSet.flatCollect(Function<? super T, ? extends Iterable<V>> function) <S> MutableList<Pair<T, S>> <S> MutableList<Pair<T, S>> <S> MutableList<Pair<T, S>> <S> MutableList<Pair<T, S>> -
Uses of MutableList in org.eclipse.collections.impl.set.strategy.mutable
Methods in org.eclipse.collections.impl.set.strategy.mutable that return types with arguments of type MutableListModifier and TypeMethodDescription<P> Twin<MutableList<T>> UnifiedSetWithHashingStrategy.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of MutableList in org.eclipse.collections.impl.stack.immutable
Fields in org.eclipse.collections.impl.stack.immutable declared as MutableListModifier and TypeFieldDescriptionprivate final MutableList<T> ImmutableArrayStack.delegateDeprecated.Methods in org.eclipse.collections.impl.stack.immutable that return MutableListModifier and TypeMethodDescriptionImmutableArrayStack.toList()Deprecated.ImmutableArrayStack.toSortedList()Deprecated.ImmutableArrayStack.toSortedList(Comparator<? super T> comparator) Deprecated.Constructors in org.eclipse.collections.impl.stack.immutable with parameters of type MutableListModifierConstructorDescriptionprivateImmutableArrayStack(MutableList<T> newElements) Deprecated. -
Uses of MutableList in org.eclipse.collections.impl.stack.mutable
Fields in org.eclipse.collections.impl.stack.mutable declared as MutableListMethods in org.eclipse.collections.impl.stack.mutable that return MutableListModifier and TypeMethodDescriptionArrayStack.toList()SynchronizedStack.toList()UnmodifiableStack.toList()ArrayStack.toSortedList()ArrayStack.toSortedList(Comparator<? super T> comparator) SynchronizedStack.toSortedList()SynchronizedStack.toSortedList(Comparator<? super T> comparator) UnmodifiableStack.toSortedList()UnmodifiableStack.toSortedList(Comparator<? super T> comparator) -
Uses of MutableList in org.eclipse.collections.impl.tuple
Methods in org.eclipse.collections.impl.tuple that return MutableListModifier and TypeMethodDescriptionstatic <T> MutableList<T> Tuples.pairToList(Pair<T, T> pair) static <T> MutableList<T> Tuples.tripleToList(Triple<T, T, T> triple) -
Uses of MutableList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableListModifier and TypeMethodDescriptionstatic MutableList<String> Partitions String in fixed size chunks.static <T,V> MutableList <V> static <T,A> MutableList <A> static <K,V, A> MutableList <A> static <T,V> MutableList <V> ArrayIterate.collectIf(T[] objectArray, Predicate<? super T> predicate, Function<? super T, ? extends V> function) static <T,A> MutableList <A> ListIterate.collectIf(List<T> list, Predicate<? super T> predicate, Function<? super T, ? extends A> function) static <T,P, V> MutableList <V> ArrayIterate.collectWith(T[] objectArray, Function2<? super T, ? super P, ? extends V> function, P parameter) static <T,P, A> MutableList <A> ListIterate.collectWith(List<T> list, Function2<? super T, ? super P, ? extends A> function, P parameter) static <T,A> MutableList <A> ListIterate.collectWithIndex(List<T> list, ObjectIntToObjectFunction<? super T, ? extends A> function) static MutableList<String> StringIterate.csvTokensToList(String string) Deprecated.in 3.0.static MutableList<String> StringIterate.csvTokensToReverseSortedList(String string) Deprecated.in 3.0.static MutableList<String> StringIterate.csvTokensToSortedList(String string) Deprecated.in 3.0.static MutableList<String> StringIterate.csvTrimmedTokensToList(String string) Deprecated.in 3.0.static MutableList<String> StringIterate.csvTrimmedTokensToSortedList(String string) Deprecated.in 3.0.static <T> MutableList<T> ArrayIterate.distinct(T[] objectArray) static <T> MutableList<T> ArrayIterate.distinct(T[] objectArray, HashingStrategy<? super T> hashingStrategy) static <T> MutableList<T> static <T> MutableList<T> ListIterate.distinct(List<T> list, HashingStrategy<? super T> hashingStrategy) static <T,V> MutableList <T> ListIterate.distinctBy(List<T> list, Function<? super T, ? extends V> function) static <T> MutableList<T> ArrayIterate.drop(T[] array, int count) static <T> MutableList<T> static <T> MutableList<T> static <T> MutableList<T> static <T,V> MutableList <V> ArrayIterate.flatCollect(T[] objectArray, Function<? super T, ? extends Iterable<V>> function) static <T,A> MutableList <A> ListIterate.flatCollect(List<T> list, Function<? super T, ? extends Iterable<A>> function) static <T> MutableList<T> static <T> MutableList<T> static <K,V> MutableList <V> static <T,P> MutableList <T> ArrayIterate.rejectWith(T[] objectArray, Predicate2<? super T, P> predicate, P parameter) static <T,IV> MutableList <T> ListIterate.rejectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T> MutableList<T> static <T> MutableList<T> static <K,V> MutableList <V> static <T> MutableList<T> ArrayListIterate.selectInstancesOf(ArrayList<?> list, Class<T> clazz) static <T,S> MutableList <S> ListIterate.selectInstancesOf(List<T> list, Class<S> clazz) static <T,P> MutableList <T> ArrayIterate.selectWith(T[] objectArray, Predicate2<? super T, P> predicate, P parameter) static <T,IV> MutableList <T> ListIterate.selectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T> MutableList<T> ArrayIterate.take(T[] array, int count) static <T> MutableList<T> static <T> MutableList<T> static <T> MutableList<T> static MutableList<String> StringIterate.tokensToList(String string, String separator) Converts a string of tokens separated by the specified separator to aMutableList.static MutableList<String> StringIterate.tokensToReverseSortedList(String string, String separator) Converts a string of tokens separated by the specified separator to a reverse sortedMutableList.static MutableList<String> StringIterate.tokensToSortedList(String string, String separator) Converts a string of tokens separated by the specified separator to a sortedMutableList.static MutableList<Character> static <K,V> MutableList <Pair<K, V>> MapIterate.toListOfPairs(Map<K, V> map) Iterate over the specified map applying the specified Function to each value and return the results as a List.static MutableList<Character> StringIterate.toLowercaseList(String string) static <T extends Comparable<? super T>>
MutableList<T> Iterate.toSortedList(Iterable<T> iterable) Return the specified collection as a sorted List.static <T> MutableList<T> Iterate.toSortedList(Iterable<T> iterable, Comparator<? super T> comparator) Return the specified collection as a sorted List using the specified Comparator.static <K,V> MutableList <V> MapIterate.toSortedList(Map<K, V> map, Comparator<? super V> comparator) Iterate over the specified map applying the specified Function to each value and return the results as a sorted List using the specified Comparator.static MutableList<Character> StringIterate.toUppercaseList(String string) static MutableList<String> StringIterate.trimmedTokensToList(String string, String separator) Converts a string of tokens separated by the specified separator to aMutableList.static MutableList<String> StringIterate.trimmedTokensToSortedList(String string, String separator) Converts a string of tokens separated by the specified separator to a sortedMutableList.static <X,Y> MutableList <Pair<X, Y>> ArrayIterate.zip(X[] xs, Y[] ys) static <X,Y> MutableList <Pair<X, Y>> static <X,Y> MutableList <Pair<X, Y>> static <T> MutableList<Pair<T, Integer>> ArrayIterate.zipWithIndex(T... array) static <T> MutableList<Pair<T, Integer>> ArrayListIterate.zipWithIndex(ArrayList<T> list) static <T> MutableList<Pair<T, Integer>> ListIterate.zipWithIndex(List<T> list) Methods in org.eclipse.collections.impl.utility that return types with arguments of type MutableListModifier and TypeMethodDescriptionstatic <T,P> Twin <MutableList<T>> ArrayIterate.selectAndRejectWith(T[] objectArray, Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.since 6.0 useRichIterable.partitionWith(Predicate2, Object)instead.static <T,P> Twin <MutableList<T>> ArrayListIterate.selectAndRejectWith(ArrayList<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,IV> Twin <MutableList<T>> Iterate.selectAndRejectWith(Iterable<T> iterable, Predicate2<? super T, ? super IV> predicate, IV injectedValue) Filters a collection into two separate collections based on a predicate returned via a Twin.static <T,IV> Twin <MutableList<T>> ListIterate.selectAndRejectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) -
Uses of MutableList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableListModifier and TypeMethodDescriptionstatic <T,V> MutableList <V> static <T,A> MutableList <A> static <T,V> MutableList <V> IterableIterate.collectIf(Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T, ? extends V> function) static <T,A> MutableList <A> RandomAccessListIterate.collectIf(List<T> list, Predicate<? super T> predicate, Function<? super T, ? extends A> function) static <T,P, V> MutableList <V> IterableIterate.collectWith(Iterable<T> iterable, Function2<? super T, ? super P, ? extends V> function, P parameter) static <T,A> MutableList <A> RandomAccessListIterate.collectWithIndex(List<T> list, ObjectIntToObjectFunction<? super T, ? extends A> function) static <T> MutableList<T> static <T> MutableList<T> IterableIterate.distinct(Iterable<T> iterable, HashingStrategy<? super T> hashingStrategy) static <T> MutableList<T> static <T> MutableList<T> IteratorIterate.distinct(Iterator<T> iterator, HashingStrategy<? super T> hashingStrategy) static <T> MutableList<T> static <T> MutableList<T> RandomAccessListIterate.distinct(List<T> list, HashingStrategy<? super T> hashingStrategy) static <T> MutableList<T> static <T> MutableList<T> static <T,V> MutableList <V> IterableIterate.flatCollect(Iterable<T> iterable, Function<? super T, ? extends Iterable<V>> function) static <T,A> MutableList <A> RandomAccessListIterate.flatCollect(List<T> list, Function<? super T, ? extends Iterable<A>> function) static <T> MutableList<T> static <T> MutableList<T> static <T,IV> MutableList <T> RandomAccessListIterate.rejectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T> MutableList<T> static <T> MutableList<T> static <T> MutableList<T> IterableIterate.selectInstancesOf(Iterable<?> iterable, Class<T> clazz) static <T> MutableList<T> RandomAccessListIterate.selectInstancesOf(List<?> list, Class<T> clazz) static <T,IV> MutableList <T> RandomAccessListIterate.selectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T> MutableList<T> static <T> MutableList<T> static <X,Y> MutableList <Pair<X, Y>> static <X,Y> MutableList <Pair<X, Y>> static <T> MutableList<Pair<T, Integer>> IterableIterate.zipWithIndex(Iterable<T> iterable) static <T> MutableList<Pair<T, Integer>> RandomAccessListIterate.zipWithIndex(List<T> list) Methods in org.eclipse.collections.impl.utility.internal that return types with arguments of type MutableListModifier and TypeMethodDescriptionstatic <T,P> Twin <MutableList<T>> InternalArrayIterate.selectAndRejectWith(T[] objectArray, int size, Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.since 6.0 useRichIterable.partitionWith(Predicate2, Object)instead.static <T,IV> Twin <MutableList<T>> IterableIterate.selectAndRejectWith(Iterable<T> iterable, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T,P> Twin <MutableList<T>> IteratorIterate.selectAndRejectWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P parameter) static <T,IV> Twin <MutableList<T>> RandomAccessListIterate.selectAndRejectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue)
RichIterable.partitionWith(Predicate2, Object)instead.