Uses of Interface
org.eclipse.collections.api.list.MutableList
-
Packages that use MutableList Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.collection org.eclipse.collections.api.factory.list This package contains factory API for creating instances of typeListIterable.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.multimap.list This package contains interfaces forListMultimap.org.eclipse.collections.api.partition.list This package contains interfaces forPartitionList.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBaginterface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBaginterface.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMapinterface.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction,Predicate,SerializableComparatorandProcedure.org.eclipse.collections.impl.block.function org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterableinterface.org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.list This package contains implementations of theListIterableinterface.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeListinterface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMapinterface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.strategy.mutable This package contains mutable map implementations backed by hashtables that rely onHashingStrategys provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.multimap.list This package contains implementations of theListMultimapinterface.org.eclipse.collections.impl.partition.list This package contains implementations of thePartitionListinterface.org.eclipse.collections.impl.partition.stack This package contains implementations of thePartitionStackinterface.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategys.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStackinterface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.org.eclipse.collections.impl.tuple org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal 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 MutableList Modifier and Type Method Description MutableList<T>ParallelIterable. toList()MutableList<T>RichIterable. toList()Converts the collection to a MutableList implementation.default MutableList<T>ParallelIterable. toSortedList()MutableList<T>ParallelIterable. toSortedList(java.util.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(java.util.Comparator<? super T> comparator)Converts the collection to a MutableList implementation and sorts it using the specified comparator.<V extends java.lang.Comparable<? super V>>
MutableList<T>ParallelIterable. toSortedListBy(Function<? super T,? extends V> function)default <V extends java.lang.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 MutableList Modifier and Type Method Description MutableList<ObjectIntPair<T>>MutableBagIterable. bottomOccurrences(int count)MutableList<ObjectIntPair<T>>MutableBagIterable. topOccurrences(int count) -
Uses of MutableList in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableList Modifier and Type Method Description MutableList<BooleanIntPair>MutableBooleanBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.MutableList<ByteIntPair>MutableByteBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.MutableList<CharIntPair>MutableCharBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.MutableList<DoubleIntPair>MutableDoubleBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.MutableList<FloatIntPair>MutableFloatBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.MutableList<IntIntPair>MutableIntBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.MutableList<LongIntPair>MutableLongBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.MutableList<ShortIntPair>MutableShortBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.MutableList<BooleanIntPair>MutableBooleanBag. topOccurrences(int count)Returns thecountmost frequently occurring items.MutableList<ByteIntPair>MutableByteBag. topOccurrences(int count)Returns thecountmost frequently occurring items.MutableList<CharIntPair>MutableCharBag. topOccurrences(int count)Returns thecountmost frequently occurring items.MutableList<DoubleIntPair>MutableDoubleBag. topOccurrences(int count)Returns thecountmost frequently occurring items.MutableList<FloatIntPair>MutableFloatBag. topOccurrences(int count)Returns thecountmost frequently occurring items.MutableList<IntIntPair>MutableIntBag. topOccurrences(int count)Returns thecountmost frequently occurring items.MutableList<LongIntPair>MutableLongBag. topOccurrences(int count)Returns thecountmost frequently occurring items.MutableList<ShortIntPair>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 MutableList Modifier and Type Method Description <V> MutableList<V>MutableSortedBag. collect(Function<? super T,? extends V> function)<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 java.lang.Iterable<V>> function)default <P,V>
MutableList<V>MutableSortedBag. flatCollectWith(Function2<? super T,? super P,? extends java.lang.Iterable<V>> function, P parameter)<S> MutableList<Pair<T,S>>MutableSortedBag. zip(java.lang.Iterable<S> that) -
Uses of MutableList in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return types with arguments of type MutableList Modifier and Type Method Description <P> Twin<MutableList<T>>MutableCollection. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)Deprecated.since 6.0 useRichIterable.partitionWith(Predicate2, Object)instead. -
Uses of MutableList in org.eclipse.collections.api.factory.list
Methods in org.eclipse.collections.api.factory.list that return MutableList Modifier and Type Method Description <T> MutableList<T>MutableListFactory. empty()<T> MutableList<T>MutableListFactory. fromStream(java.util.stream.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>MutableListFactory. ofAll(java.lang.Iterable<? extends T> iterable)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>MutableListFactory. withAll(java.lang.Iterable<? extends T> iterable)<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.list Modifier and Type Interface Description interfaceFixedSizeList<T>A FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.interfaceMultiReaderList<T>A MultiReaderList provides thread-safe iteration for a list through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().Methods in org.eclipse.collections.api.list that return MutableList Modifier and Type Method Description MutableList<T>MutableList. asSynchronized()MutableList<T>MutableList. asUnmodifiable()Returns an unmodifiable view of the list.MutableList<T>MutableList. clone()default <V> MutableList<V>MutableList. collect(Function<? super T,? extends V> function)default <V> MutableList<V>MutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)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<T>MutableList. distinct()Returns a newListIterablecontaining the distinct elements in this list.MutableList<T>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<T>MutableList. drop(int count)MutableList<T>MutableList. dropWhile(Predicate<? super T> predicate)default <V> MutableList<V>MutableList. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)default <P,V>
MutableList<V>MutableList. flatCollectWith(Function2<? super T,? super P,? extends java.lang.Iterable<V>> function, P parameter)MutableList<T>MutableList. newEmpty()default MutableList<T>MutableList. reject(Predicate<? super T> predicate)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>MutableList. select(Predicate<? super T> predicate)<S> MutableList<S>MutableList. selectInstancesOf(java.lang.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(java.util.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(java.util.Comparator<? super T> comparator)Sorts the internal data structure of this list and returns the list itself as a convenience.default <V extends java.lang.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<T>MutableList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>MutableList. sortThisByByte(ByteFunction<? super T> function)MutableList<T>MutableList. sortThisByChar(CharFunction<? super T> function)MutableList<T>MutableList. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>MutableList. sortThisByFloat(FloatFunction<? super T> function)MutableList<T>MutableList. sortThisByInt(IntFunction<? super T> function)MutableList<T>MutableList. sortThisByLong(LongFunction<? super T> function)MutableList<T>MutableList. sortThisByShort(ShortFunction<? super T> function)MutableList<T>MutableList. subList(int fromIndex, int toIndex)MutableList<T>MutableList. take(int count)MutableList<T>MutableList. takeWhile(Predicate<? super T> predicate)default MutableList<T>MutableList. tap(Procedure<? super T> procedure)default MutableList<T>MutableList. toReversed()Returns a new MutableList in reverse order.MutableList<T>FixedSizeList. with(T element)default MutableList<T>MutableList. with(T element)MutableList<T>FixedSizeList. withAll(java.lang.Iterable<? extends T> elements)default MutableList<T>MutableList. withAll(java.lang.Iterable<? extends T> elements)MutableList<T>FixedSizeList. without(T element)default MutableList<T>MutableList. without(T element)MutableList<T>FixedSizeList. withoutAll(java.lang.Iterable<? extends T> elements)default MutableList<T>MutableList. withoutAll(java.lang.Iterable<? extends T> elements)<S> MutableList<Pair<T,S>>MutableList. zip(java.lang.Iterable<S> that)MutableList<Pair<T,java.lang.Integer>>MutableList. zipWithIndex()Method parameters in org.eclipse.collections.api.list with type arguments of type MutableList Modifier and Type Method Description voidMultiReaderList. 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 MutableList Modifier and Type Method Description MutableList<java.lang.Boolean>MutableBooleanList. boxed()MutableList<java.lang.Byte>MutableByteList. boxed()MutableList<java.lang.Character>MutableCharList. boxed()MutableList<java.lang.Double>MutableDoubleList. boxed()MutableList<java.lang.Float>MutableFloatList. boxed()MutableList<java.lang.Integer>MutableIntList. boxed()MutableList<java.lang.Long>MutableLongList. boxed()MutableList<java.lang.Short>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>>MutableBooleanList. zip(java.lang.Iterable<T> list)Returns aMutableListformed from thisMutableBooleanListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<ByteObjectPair<T>>MutableByteList. zip(java.lang.Iterable<T> list)Returns aMutableListformed from thisMutableByteListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<CharObjectPair<T>>MutableCharList. zip(java.lang.Iterable<T> list)Returns aMutableListformed from thisMutableCharListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<DoubleObjectPair<T>>MutableDoubleList. zip(java.lang.Iterable<T> list)Returns aMutableListformed from thisMutableDoubleListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<FloatObjectPair<T>>MutableFloatList. zip(java.lang.Iterable<T> list)Returns aMutableListformed from thisMutableFloatListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<IntObjectPair<T>>MutableIntList. zip(java.lang.Iterable<T> list)Returns aMutableListformed from thisMutableIntListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<LongObjectPair<T>>MutableLongList. zip(java.lang.Iterable<T> list)Returns aMutableListformed from thisMutableLongListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<ShortObjectPair<T>>MutableShortList. zip(java.lang.Iterable<T> list)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 MutableList Modifier and Type Method Description <VV> MutableList<VV>MutableOrderedMap. collect(Function<? super V,? extends VV> function)<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)MutableList<V>MutableOrderedMap. distinct()<V1> MutableList<V1>MutableOrderedMap. flatCollect(Function<? super V,? extends java.lang.Iterable<V1>> function)default <P,V1>
MutableList<V1>MutableOrderedMap. flatCollectWith(Function2<? super V,? super P,? extends java.lang.Iterable<V1>> function, P parameter)MutableList<V>MutableOrderedMap. reject(Predicate<? super V> predicate)<P> MutableList<V>MutableOrderedMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)MutableList<V>MutableOrderedMap. select(Predicate<? super V> predicate)<S> MutableList<S>MutableOrderedMap. selectInstancesOf(java.lang.Class<S> clazz)<P> MutableList<V>MutableOrderedMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<S> MutableList<Pair<V,S>>MutableOrderedMap. zip(java.lang.Iterable<S> that)MutableList<Pair<V,java.lang.Integer>>MutableOrderedMap. zipWithIndex() -
Uses of MutableList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableList Modifier and Type Method Description <R> MutableList<R>MutableSortedMap. collect(Function<? super V,? extends R> function)<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)MutableList<V>MutableSortedMap. distinct()<R> MutableList<R>MutableSortedMap. flatCollect(Function<? super V,? extends java.lang.Iterable<R>> function)default <P,R>
MutableList<R>MutableSortedMap. flatCollectWith(Function2<? super V,? super P,? extends java.lang.Iterable<R>> function, P parameter)MutableList<V>MutableSortedMap. reject(Predicate<? super V> predicate)<P> MutableList<V>MutableSortedMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)MutableList<V>MutableSortedMap. select(Predicate<? super V> predicate)<S> MutableList<S>MutableSortedMap. selectInstancesOf(java.lang.Class<S> clazz)<P> MutableList<V>MutableSortedMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<S> MutableList<Pair<V,S>>MutableSortedMap. zip(java.lang.Iterable<S> that)MutableList<Pair<V,java.lang.Integer>>MutableSortedMap. zipWithIndex() -
Uses of MutableList in org.eclipse.collections.api.multimap.list
Methods in org.eclipse.collections.api.multimap.list that return MutableList Modifier and Type Method Description MutableList<V>MutableListMultimap. get(K key)MutableList<V>MutableListMultimap. getIfAbsentPutAll(K key, java.lang.Iterable<? extends V> values)MutableList<V>MutableListMultimap. removeAll(java.lang.Object key)MutableList<V>MutableListMultimap. replaceValues(K key, java.lang.Iterable<? extends V> values)Method parameters in org.eclipse.collections.api.multimap.list with type arguments of type MutableList Modifier and Type Method Description voidMutableListMultimap. 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 MutableList Modifier and Type Method Description MutableList<T>PartitionMutableList. getRejected()MutableList<T>PartitionMutableList. getSelected() -
Uses of MutableList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableList Modifier and Type Method Description <V> MutableList<V>MutableSortedSet. collect(Function<? super T,? extends V> function)<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 java.lang.Iterable<V>> function)default <P,V>
MutableList<V>MutableSortedSet. flatCollectWith(Function2<? super T,? super P,? extends java.lang.Iterable<V>> function, P parameter)<S> MutableList<Pair<T,S>>MutableSortedSet. zip(java.lang.Iterable<S> that) -
Uses of MutableList in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return MutableList Modifier and Type Method Description MutableList<T>AbstractRichIterable. toList()MutableList<T>UnmodifiableRichIterable. toList()MutableList<T>UnmodifiableRichIterable. toSortedList()MutableList<T>UnmodifiableRichIterable. toSortedList(java.util.Comparator<? super T> comparator)<V extends java.lang.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 MutableList Modifier and Type Method Description protected MutableList<ObjectIntPair<T>>AbstractBag. occurrencesSortingBy(int n, IntFunction<ObjectIntPair<T>> function, MutableList<ObjectIntPair<T>> returnWhenEmpty)MutableList<T>AbstractBag. toList()protected MutableList<ObjectIntPair<T>>AbstractBag. toListWithOccurrences()MutableList<T>AbstractBag. toSortedList(java.util.Comparator<? super T> comparator)Methods in org.eclipse.collections.impl.bag with parameters of type MutableList Modifier and Type Method Description protected 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 MutableList Modifier and Type Method Description MutableList<T>ImmutableEmptyBag. toList()MutableList<T>ImmutableHashBag. toList()MutableList<T>ImmutableEmptyBag. toSortedList()MutableList<T>ImmutableEmptyBag. toSortedList(java.util.Comparator<? super T> comparator)MutableList<T>ImmutableHashBag. toSortedList()MutableList<T>ImmutableHashBag. toSortedList(java.util.Comparator<? super T> comparator) -
Uses of MutableList in org.eclipse.collections.impl.bag.mutable
Fields in org.eclipse.collections.impl.bag.mutable declared as MutableList Modifier and Type Field Description private MutableList<MultiReaderHashBag.UntouchableIterator<T>>MultiReaderHashBag.UntouchableMutableBag. requestedIteratorsMethods in org.eclipse.collections.impl.bag.mutable that return MutableList Modifier and Type Method Description MutableList<ObjectIntPair<T>>AbstractMutableBagIterable. bottomOccurrences(int n)MutableList<ObjectIntPair<T>>MultiReaderHashBag. bottomOccurrences(int count)MutableList<ObjectIntPair<T>>MultiReaderHashBag.UntouchableMutableBag. bottomOccurrences(int count)MutableList<ObjectIntPair<T>>SynchronizedBag. bottomOccurrences(int count)MutableList<ObjectIntPair<T>>UnmodifiableBag. bottomOccurrences(int count)MutableList<ObjectIntPair<T>>AbstractMutableBagIterable. topOccurrences(int n)MutableList<ObjectIntPair<T>>MultiReaderHashBag. topOccurrences(int count)MutableList<ObjectIntPair<T>>MultiReaderHashBag.UntouchableMutableBag. topOccurrences(int count)MutableList<ObjectIntPair<T>>SynchronizedBag. topOccurrences(int count)MutableList<ObjectIntPair<T>>UnmodifiableBag. topOccurrences(int count)Methods in org.eclipse.collections.impl.bag.mutable that return types with arguments of type MutableList Modifier and Type Method Description <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
-
Uses of MutableList in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return MutableList Modifier and Type Method Description private MutableList<ObjectIntPair<T>>AbstractImmutableSortedBag. occurrencesSortingBy(int n, IntFunction<ObjectIntPair<T>> function)MutableList<T>ImmutableSortedBagImpl. toSortedList() -
Uses of MutableList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableList Modifier and Type Method Description MutableList<ObjectIntPair<T>>SynchronizedSortedBag. bottomOccurrences(int count)MutableList<ObjectIntPair<T>>UnmodifiableSortedBag. bottomOccurrences(int count)<V> MutableList<V>AbstractMutableSortedBag. collect(Function<? super T,? extends V> function)<V> MutableList<V>SynchronizedSortedBag. collect(Function<? super T,? extends V> function)<V> MutableList<V>UnmodifiableSortedBag. collect(Function<? super T,? extends V> function)<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 java.lang.Iterable<V>> function)<V> MutableList<V>SynchronizedSortedBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V> MutableList<V>UnmodifiableSortedBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)MutableList<ObjectIntPair<T>>SynchronizedSortedBag. topOccurrences(int count)MutableList<ObjectIntPair<T>>UnmodifiableSortedBag. topOccurrences(int count)<S> MutableList<Pair<T,S>>AbstractMutableSortedBag. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<T,S>>SynchronizedSortedBag. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<T,S>>UnmodifiableSortedBag. zip(java.lang.Iterable<S> that) -
Uses of MutableList in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap that return MutableList Modifier and Type Method Description MutableList<V>AbstractBiMap. toList()MutableList<V>AbstractBiMap. toSortedList()MutableList<V>AbstractBiMap. toSortedList(java.util.Comparator<? super V> comparator) -
Uses of MutableList in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableList Modifier and Type Method Description MutableList<V>UnmodifiableBiMap. toList()MutableList<V>UnmodifiableBiMap. toSortedList()MutableList<V>UnmodifiableBiMap. toSortedList(java.util.Comparator<? super V> comparator) -
Uses of MutableList in org.eclipse.collections.impl.block.factory
Methods in org.eclipse.collections.impl.block.factory that return MutableList Modifier and Type Method Description MutableList<T>Functions0.NewFastListFunction. value()Methods in org.eclipse.collections.impl.block.factory that return types with arguments of type MutableList Modifier and Type Method Description static <T> Function0<MutableList<T>>Functions0. newFastList() -
Uses of MutableList in org.eclipse.collections.impl.block.function
Fields in org.eclipse.collections.impl.block.function declared as MutableList Modifier and Type Field Description private MutableList<Pair<Predicate<? super T>,Function<? super T,? extends V>>>CaseFunction. predicateFunctions -
Uses of MutableList in org.eclipse.collections.impl.block.function.primitive
-
Uses of MutableList in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as MutableList Modifier and Type Field Description private MutableList<Pair<BooleanPredicate,BooleanProcedure>>BooleanCaseProcedure. predicateProceduresprivate MutableList<Pair<BytePredicate,ByteProcedure>>ByteCaseProcedure. predicateProceduresprivate MutableList<Pair<CharPredicate,CharProcedure>>CharCaseProcedure. predicateProceduresprivate MutableList<Pair<DoublePredicate,DoubleProcedure>>DoubleCaseProcedure. predicateProceduresprivate MutableList<Pair<FloatPredicate,FloatProcedure>>FloatCaseProcedure. predicateProceduresprivate MutableList<Pair<IntPredicate,IntProcedure>>IntCaseProcedure. predicateProceduresprivate MutableList<Pair<LongPredicate,LongProcedure>>LongCaseProcedure. predicateProceduresprivate MutableList<Pair<ShortPredicate,ShortProcedure>>ShortCaseProcedure. predicateProcedures -
Uses of MutableList in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return MutableList Modifier and Type Method Description MutableList<T>AbstractSynchronizedRichIterable. toList()MutableList<T>AbstractSynchronizedRichIterable. toSortedList()MutableList<T>AbstractSynchronizedRichIterable. toSortedList(java.util.Comparator<? super T> comparator)<V extends java.lang.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 MutableList Modifier and Type Method Description MutableList<T>AbstractCollectionAdapter. toList()MutableList<T>AbstractMultiReaderMutableCollection. toList()MutableList<T>AbstractMultiReaderMutableCollection.UntouchableMutableCollection. toList()MutableList<T>AbstractUnmodifiableMutableCollection. toList()MutableList<T>AbstractCollectionAdapter. toSortedList(java.util.Comparator<? super T> comparator)MutableList<T>AbstractMultiReaderMutableCollection. toSortedList()MutableList<T>AbstractMultiReaderMutableCollection. toSortedList(java.util.Comparator<? super T> comparator)MutableList<T>AbstractMultiReaderMutableCollection.UntouchableMutableCollection. toSortedList()MutableList<T>AbstractMultiReaderMutableCollection.UntouchableMutableCollection. toSortedList(java.util.Comparator<? super T> comparator)MutableList<T>AbstractUnmodifiableMutableCollection. toSortedList()MutableList<T>AbstractUnmodifiableMutableCollection. toSortedList(java.util.Comparator<? super T> comparator)<V extends java.lang.Comparable<? super V>>
MutableList<T>AbstractMultiReaderMutableCollection. toSortedListBy(Function<? super T,? extends V> function)<V extends java.lang.Comparable<? super V>>
MutableList<T>AbstractMultiReaderMutableCollection.UntouchableMutableCollection. toSortedListBy(Function<? super T,? extends V> function)static <E> MutableList<E>CollectionAdapter. wrapList(java.lang.Iterable<E> iterable)Methods in org.eclipse.collections.impl.collection.mutable that return types with arguments of type MutableList Modifier and Type Method Description <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 MutableList Modifier and Type Method Description static <T> java.util.stream.Collector<T,?,MutableList<MutableList<T>>>Collectors2. chunk(int size)Partitions elements in fixed size chunks.static <T> java.util.stream.Collector<T,?,MutableList<MutableList<T>>>Collectors2. chunk(int size)Partitions elements in fixed size chunks.static <T> java.util.stream.Collector<T,?,MutableList<T>>Collectors2. toList()Returns the elements as a MutableList.static <T> java.util.stream.Collector<T,?,MutableList<T>>Collectors2. toSortedList()Returns the elements as a MutableList that has been sorted.static <T> java.util.stream.Collector<T,?,MutableList<T>>Collectors2. toSortedList(java.util.Comparator<? super T> comparator)Returns the elements as a MutableList that has been sorted using the specified comparator.static <T,V extends java.lang.Comparable<? super V>>
java.util.stream.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>
java.util.stream.Collector<T,?,MutableList<Pair<T,S>>>Collectors2. zip(java.lang.Iterable<S> other)Returns aMutableListformed from this stream of elements and anotherIterableby combining corresponding elements in pairs.static <T> java.util.stream.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 MutableList Modifier and Type Method Description static <T> MutableList<T>Lists. adapt(java.util.List<T> list)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 MutableList Modifier and Type Field Description private MutableList<java.lang.Iterable<E>>CompositeIterable. iterablesConstructors in org.eclipse.collections.impl.lazy with parameters of type MutableList Constructor Description CompositeIterable(MutableList<java.lang.Iterable<E>> newIterables)CompositeIterator(MutableList<java.lang.Iterable<E>> iterables) -
Uses of MutableList in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel that return MutableList Modifier and Type Method Description MutableList<T>AbstractMultiReaderParallelIterable. toList()MutableList<T>AbstractParallelIterable. toList()MutableList<T>AbstractSynchronizedParallelIterable. toList()MutableList<T>NonParallelIterable. toList()MutableList<T>AbstractMultiReaderParallelIterable. toSortedList()MutableList<T>AbstractMultiReaderParallelIterable. toSortedList(java.util.Comparator<? super T> comparator)MutableList<T>AbstractParallelIterable. toSortedList(java.util.Comparator<? super T> comparator)MutableList<T>AbstractSynchronizedParallelIterable. toSortedList()MutableList<T>AbstractSynchronizedParallelIterable. toSortedList(java.util.Comparator<? super T> comparator)MutableList<T>NonParallelIterable. toSortedList()MutableList<T>NonParallelIterable. toSortedList(java.util.Comparator<? super T> comparator)<V extends java.lang.Comparable<? super V>>
MutableList<T>AbstractMultiReaderParallelIterable. toSortedListBy(Function<? super T,? extends V> function)<V extends java.lang.Comparable<? super V>>
MutableList<T>AbstractParallelIterable. toSortedListBy(Function<? super T,? extends V> function)<V extends java.lang.Comparable<? super V>>
MutableList<T>AbstractSynchronizedParallelIterable. toSortedListBy(Function<? super T,? extends V> function)<V extends java.lang.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 MutableList Modifier and Type Method Description MutableList<java.lang.Integer>Interval. toList()static MutableList<java.lang.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 MutableList Modifier and Type Class Description classAbstractArrayAdapter<T>classAbstractMemoryEfficientMutableList<T>private static classAbstractMemoryEfficientMutableList.SubList<T>classArrayAdapter<T>This class provides a MutableList wrapper around an array.(package private) classDoubletonList<T>A DoubletonList is a two-element memory efficient List.(package private) classEmptyList<T>This class is a memory efficient list with no elements.(package private) classQuadrupletonList<T>This is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).(package private) classQuintupletonList<T>This is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).(package private) classSextupletonList<T>This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).(package private) classSingletonList<T>This class is a memory efficient list with one element.(package private) classTripletonList<T>This 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 MutableList Modifier and Type Method Description <V> MutableList<V>AbstractArrayAdapter. collect(Function<? super T,? extends V> function)<P,A>
MutableList<A>AbstractArrayAdapter. collectWith(Function2<? super T,? super P,? extends A> function, P parameter)MutableList<T>AbstractArrayAdapter. distinct()MutableList<T>AbstractArrayAdapter. distinct(HashingStrategy<? super T> hashingStrategy)MutableList<T>AbstractArrayAdapter. drop(int count)<V> MutableList<V>AbstractArrayAdapter. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V extends java.lang.Comparable<? super V>>
MutableList<T>EmptyList. sortThisBy(Function<? super T,? extends V> function)<V extends java.lang.Comparable<? super V>>
MutableList<T>SingletonList. sortThisBy(Function<? super T,? extends V> function)MutableList<T>EmptyList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>SingletonList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>EmptyList. sortThisByByte(ByteFunction<? super T> function)MutableList<T>SingletonList. sortThisByByte(ByteFunction<? super T> function)MutableList<T>EmptyList. sortThisByChar(CharFunction<? super T> function)MutableList<T>SingletonList. sortThisByChar(CharFunction<? super T> function)MutableList<T>EmptyList. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>SingletonList. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>EmptyList. sortThisByFloat(FloatFunction<? super T> function)MutableList<T>SingletonList. sortThisByFloat(FloatFunction<? super T> function)MutableList<T>EmptyList. sortThisByInt(IntFunction<? super T> function)MutableList<T>SingletonList. sortThisByInt(IntFunction<? super T> function)MutableList<T>EmptyList. sortThisByLong(LongFunction<? super T> function)MutableList<T>SingletonList. sortThisByLong(LongFunction<? super T> function)MutableList<T>EmptyList. sortThisByShort(ShortFunction<? super T> function)MutableList<T>SingletonList. sortThisByShort(ShortFunction<? super T> function)MutableList<T>AbstractArrayAdapter. subList(int fromIndex, int toIndex)MutableList<T>AbstractMemoryEfficientMutableList. subList(int fromIndex, int toIndex)MutableList<T>AbstractArrayAdapter. take(int count)MutableList<T>AbstractMemoryEfficientMutableList. withAll(java.lang.Iterable<? extends T> elements)MutableList<T>AbstractMemoryEfficientMutableList. without(T element)MutableList<T>AbstractMemoryEfficientMutableList. withoutAll(java.lang.Iterable<? extends T> elements)<S> MutableList<Pair<T,S>>EmptyList. zip(java.lang.Iterable<S> that)MutableList<Pair<T,java.lang.Integer>>EmptyList. zipWithIndex()Methods in org.eclipse.collections.impl.list.fixed that return types with arguments of type MutableList Modifier and Type Method Description <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 MutableList Modifier and Type Class Description classAbstractListAdapter<T>classAbstractMutableList<T>protected static classAbstractMutableList.SubList<T>classArrayListAdapter<T>This class provides a MutableList wrapper around a JDK Collections ArrayList instance.classCompositeFastList<E>CompositeFastList 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.classListAdapter<T>This class provides a MutableList wrapper around a JDK Collections List interface instance.classMultiReaderFastList<T>MultiReadFastList provides a thread-safe wrapper around a FastList, using a ReentrantReadWriteLock.(package private) static classMultiReaderFastList.UntouchableMutableList<T>classRandomAccessListAdapter<T>This class provides a MutableList wrapper around a JDK Collections List interface instance.classSynchronizedMutableList<T>A synchronized view of aMutableList.classUnmodifiableMutableList<T>An unmodifiable view of a list.private static classUnmodifiableMutableList.RandomAccessUnmodifiableMutableList<T>Fields in org.eclipse.collections.impl.list.mutable declared as MutableList Modifier and Type Field Description private MutableList<T>MultiReaderFastList. delegateprivate MutableList<MultiReaderFastList.UntouchableListIterator<T>>MultiReaderFastList.UntouchableMutableList. requestedIteratorsprivate MutableList<MultiReaderFastList.UntouchableMutableList<T>>MultiReaderFastList.UntouchableMutableList. requestedSubListsMethods in org.eclipse.collections.impl.list.mutable that return MutableList Modifier and Type Method Description static <E> MutableList<E>ListAdapter. adapt(java.util.List<E> list)static <E> MutableList<E>RandomAccessListAdapter. adapt(java.util.List<E> list)MutableList<T>AbstractMutableList. asSynchronized()MutableList<T>ArrayListAdapter. asSynchronized()MutableList<T>ListAdapter. asSynchronized()MutableList<T>MultiReaderFastList. asSynchronized()MutableList<T>MultiReaderFastList.UntouchableMutableList. asSynchronized()MutableList<T>RandomAccessListAdapter. asSynchronized()MutableList<T>SynchronizedMutableList. asSynchronized()MutableList<T>UnmodifiableMutableList. asSynchronized()MutableList<T>AbstractMutableList. asUnmodifiable()MutableList<T>ArrayListAdapter. asUnmodifiable()MutableList<T>ListAdapter. asUnmodifiable()MutableList<T>MultiReaderFastList. asUnmodifiable()MutableList<T>MultiReaderFastList.UntouchableMutableList. asUnmodifiable()MutableList<T>RandomAccessListAdapter. asUnmodifiable()MutableList<T>SynchronizedMutableList. asUnmodifiable()MutableList<T>UnmodifiableMutableList. asUnmodifiable()MutableList<T>AbstractListAdapter. clone()MutableList<T>AbstractMutableList. clone()MutableList<T>AbstractMutableList.SubList. clone()MutableList<E>CompositeFastList. clone()MutableList<T>ListAdapter. clone()MutableList<T>MultiReaderFastList.UntouchableMutableList. clone()MutableList<T>RandomAccessListAdapter. clone()MutableList<T>SynchronizedMutableList. clone()<V> MutableList<V>AbstractListAdapter. collect(Function<? super T,? extends V> function)<V> MutableList<V>MultiReaderFastList. collect(Function<? super T,? extends V> function)<V> MutableList<V>MultiReaderFastList.UntouchableMutableList. collect(Function<? super T,? extends V> function)<V> MutableList<V>RandomAccessListAdapter. collect(Function<? super T,? extends V> function)<V> MutableList<V>SynchronizedMutableList. collect(Function<? super T,? extends V> function)<V> MutableList<V>UnmodifiableMutableList. collect(Function<? super T,? extends V> function)<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)MutableList<T>AbstractMutableList. distinct()MutableList<T>AbstractMutableList. distinct(HashingStrategy<? super T> hashingStrategy)MutableList<T>FastList. distinct()MutableList<T>FastList. distinct(HashingStrategy<? super T> hashingStrategy)MutableList<T>ListAdapter. distinct()MutableList<T>ListAdapter. distinct(HashingStrategy<? super T> hashingStrategy)MutableList<T>MultiReaderFastList. distinct()MutableList<T>MultiReaderFastList. distinct(HashingStrategy<? super T> hashingStrategy)MutableList<T>MultiReaderFastList.UntouchableMutableList. distinct()MutableList<T>MultiReaderFastList.UntouchableMutableList. distinct(HashingStrategy<? super T> hashingStrategy)MutableList<T>RandomAccessListAdapter. distinct()MutableList<T>RandomAccessListAdapter. distinct(HashingStrategy<? super T> hashingStrategy)MutableList<T>SynchronizedMutableList. distinct()MutableList<T>SynchronizedMutableList. distinct(HashingStrategy<? super T> hashingStrategy)MutableList<T>UnmodifiableMutableList. distinct()MutableList<T>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)MutableList<T>AbstractMutableList. drop(int count)MutableList<T>ArrayListAdapter. drop(int count)MutableList<T>FastList. drop(int count)MutableList<T>ListAdapter. drop(int count)MutableList<T>MultiReaderFastList. drop(int count)MutableList<T>MultiReaderFastList.UntouchableMutableList. drop(int count)MutableList<T>RandomAccessListAdapter. drop(int count)MutableList<T>SynchronizedMutableList. drop(int count)MutableList<T>UnmodifiableMutableList. drop(int count)MutableList<T>AbstractMutableList. dropWhile(Predicate<? super T> predicate)MutableList<T>ArrayListAdapter. dropWhile(Predicate<? super T> predicate)MutableList<T>FastList. dropWhile(Predicate<? super T> predicate)MutableList<T>ListAdapter. dropWhile(Predicate<? super T> predicate)MutableList<T>MultiReaderFastList. dropWhile(Predicate<? super T> predicate)MutableList<T>MultiReaderFastList.UntouchableMutableList. dropWhile(Predicate<? super T> predicate)MutableList<T>RandomAccessListAdapter. dropWhile(Predicate<? super T> predicate)MutableList<T>SynchronizedMutableList. dropWhile(Predicate<? super T> predicate)MutableList<T>UnmodifiableMutableList. dropWhile(Predicate<? super T> predicate)<T> MutableList<T>MutableListFactoryImpl. empty()<V> MutableList<V>AbstractListAdapter. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V> MutableList<V>MultiReaderFastList. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V> MutableList<V>MultiReaderFastList.UntouchableMutableList. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V> MutableList<V>RandomAccessListAdapter. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V> MutableList<V>SynchronizedMutableList. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V> MutableList<V>UnmodifiableMutableList. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<T> MutableList<T>MutableListFactoryImpl. fromStream(java.util.stream.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()MutableList<T>AbstractMutableList. newEmpty()MutableList<T>ListAdapter. newEmpty()Deprecated.useFastList.newList()instead (inlineable)MutableList<T>MultiReaderFastList.UntouchableMutableList. newEmpty()MutableList<T>RandomAccessListAdapter. newEmpty()Deprecated.useFastList.newList()instead (inlineable)MutableList<T>SynchronizedMutableList. newEmpty()MutableList<T>UnmodifiableMutableList. newEmpty()MutableList<T>AbstractListAdapter. reject(Predicate<? super T> predicate)MutableList<T>MultiReaderFastList.UntouchableMutableList. reject(Predicate<? super T> predicate)MutableList<T>RandomAccessListAdapter. reject(Predicate<? super T> predicate)MutableList<T>SynchronizedMutableList. reject(Predicate<? super T> predicate)MutableList<T>UnmodifiableMutableList. reject(Predicate<? super T> predicate)<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)MutableList<T>FastList. rejectWithIndex(ObjectIntPredicate<? super T> predicate)MutableList<T>SynchronizedMutableList. rejectWithIndex(ObjectIntPredicate<? super T> predicate)MutableList<T>MultiReaderFastList.UntouchableMutableList. reverseThis()MutableList<T>SynchronizedMutableList. reverseThis()MutableList<T>UnmodifiableMutableList. reverseThis()MutableList<T>AbstractListAdapter. select(Predicate<? super T> predicate)MutableList<T>MultiReaderFastList.UntouchableMutableList. select(Predicate<? super T> predicate)MutableList<T>RandomAccessListAdapter. select(Predicate<? super T> predicate)MutableList<T>SynchronizedMutableList. select(Predicate<? super T> predicate)MutableList<T>UnmodifiableMutableList. select(Predicate<? super T> predicate)<S> MutableList<S>AbstractListAdapter. selectInstancesOf(java.lang.Class<S> clazz)<S> MutableList<S>AbstractMutableList. selectInstancesOf(java.lang.Class<S> clazz)<S> MutableList<S>ArrayListAdapter. selectInstancesOf(java.lang.Class<S> clazz)<S> MutableList<S>ListAdapter. selectInstancesOf(java.lang.Class<S> clazz)<S> MutableList<S>MultiReaderFastList. selectInstancesOf(java.lang.Class<S> clazz)<S> MutableList<S>MultiReaderFastList.UntouchableMutableList. selectInstancesOf(java.lang.Class<S> clazz)<S> MutableList<S>RandomAccessListAdapter. selectInstancesOf(java.lang.Class<S> clazz)<S> MutableList<S>SynchronizedMutableList. selectInstancesOf(java.lang.Class<S> clazz)<S> MutableList<S>UnmodifiableMutableList. selectInstancesOf(java.lang.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)MutableList<T>FastList. selectWithIndex(ObjectIntPredicate<? super T> predicate)MutableList<T>SynchronizedMutableList. selectWithIndex(ObjectIntPredicate<? super T> predicate)MutableList<T>MultiReaderFastList.UntouchableMutableList. shuffleThis()MutableList<T>MultiReaderFastList.UntouchableMutableList. shuffleThis(java.util.Random rnd)MutableList<T>SynchronizedMutableList. shuffleThis()MutableList<T>SynchronizedMutableList. shuffleThis(java.util.Random rnd)MutableList<T>UnmodifiableMutableList. shuffleThis()MutableList<T>UnmodifiableMutableList. shuffleThis(java.util.Random rnd)MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThis()MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThis(java.util.Comparator<? super T> comparator)MutableList<T>SynchronizedMutableList. sortThis()MutableList<T>SynchronizedMutableList. sortThis(java.util.Comparator<? super T> comparator)<V extends java.lang.Comparable<? super V>>
MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThisBy(Function<? super T,? extends V> function)<V extends java.lang.Comparable<? super V>>
MutableList<T>SynchronizedMutableList. sortThisBy(Function<? super T,? extends V> function)<V extends java.lang.Comparable<? super V>>
MutableList<T>UnmodifiableMutableList. sortThisBy(Function<? super T,? extends V> function)MutableList<T>AbstractListAdapter. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>AbstractMutableList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>SynchronizedMutableList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>UnmodifiableMutableList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>AbstractListAdapter. sortThisByByte(ByteFunction<? super T> function)MutableList<T>AbstractMutableList. sortThisByByte(ByteFunction<? super T> function)MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThisByByte(ByteFunction<? super T> function)MutableList<T>SynchronizedMutableList. sortThisByByte(ByteFunction<? super T> function)MutableList<T>UnmodifiableMutableList. sortThisByByte(ByteFunction<? super T> function)MutableList<T>AbstractListAdapter. sortThisByChar(CharFunction<? super T> function)MutableList<T>AbstractMutableList. sortThisByChar(CharFunction<? super T> function)MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThisByChar(CharFunction<? super T> function)MutableList<T>SynchronizedMutableList. sortThisByChar(CharFunction<? super T> function)MutableList<T>UnmodifiableMutableList. sortThisByChar(CharFunction<? super T> function)MutableList<T>AbstractListAdapter. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>AbstractMutableList. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>SynchronizedMutableList. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>UnmodifiableMutableList. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>AbstractListAdapter. sortThisByFloat(FloatFunction<? super T> function)MutableList<T>AbstractMutableList. sortThisByFloat(FloatFunction<? super T> function)MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThisByFloat(FloatFunction<? super T> function)MutableList<T>SynchronizedMutableList. sortThisByFloat(FloatFunction<? super T> function)MutableList<T>UnmodifiableMutableList. sortThisByFloat(FloatFunction<? super T> function)MutableList<T>AbstractListAdapter. sortThisByInt(IntFunction<? super T> function)MutableList<T>AbstractMutableList. sortThisByInt(IntFunction<? super T> function)MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThisByInt(IntFunction<? super T> function)MutableList<T>SynchronizedMutableList. sortThisByInt(IntFunction<? super T> function)MutableList<T>UnmodifiableMutableList. sortThisByInt(IntFunction<? super T> function)MutableList<T>AbstractListAdapter. sortThisByLong(LongFunction<? super T> function)MutableList<T>AbstractMutableList. sortThisByLong(LongFunction<? super T> function)MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThisByLong(LongFunction<? super T> function)MutableList<T>SynchronizedMutableList. sortThisByLong(LongFunction<? super T> function)MutableList<T>UnmodifiableMutableList. sortThisByLong(LongFunction<? super T> function)MutableList<T>AbstractListAdapter. sortThisByShort(ShortFunction<? super T> function)MutableList<T>AbstractMutableList. sortThisByShort(ShortFunction<? super T> function)MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThisByShort(ShortFunction<? super T> function)MutableList<T>SynchronizedMutableList. sortThisByShort(ShortFunction<? super T> function)MutableList<T>UnmodifiableMutableList. sortThisByShort(ShortFunction<? super T> function)MutableList<T>AbstractListAdapter. subList(int fromIndex, int toIndex)MutableList<T>AbstractMutableList. subList(int fromIndex, int toIndex)MutableList<T>AbstractMutableList.SubList. subList(int fromIndex, int toIndex)MutableList<T>MultiReaderFastList.UntouchableMutableList. subList(int fromIndex, int toIndex)MutableList<T>SynchronizedMutableList. subList(int fromIndex, int toIndex)MutableList<T>AbstractMutableList. take(int count)MutableList<T>ArrayListAdapter. take(int count)MutableList<T>FastList. take(int count)MutableList<T>ListAdapter. take(int count)MutableList<T>MultiReaderFastList. take(int count)MutableList<T>MultiReaderFastList.UntouchableMutableList. take(int count)MutableList<T>RandomAccessListAdapter. take(int count)MutableList<T>SynchronizedMutableList. take(int count)MutableList<T>UnmodifiableMutableList. take(int count)MutableList<T>AbstractMutableList. takeWhile(Predicate<? super T> predicate)MutableList<T>ArrayListAdapter. takeWhile(Predicate<? super T> predicate)MutableList<T>FastList. takeWhile(Predicate<? super T> predicate)MutableList<T>ListAdapter. takeWhile(Predicate<? super T> predicate)MutableList<T>MultiReaderFastList. takeWhile(Predicate<? super T> predicate)MutableList<T>MultiReaderFastList.UntouchableMutableList. takeWhile(Predicate<? super T> predicate)MutableList<T>RandomAccessListAdapter. takeWhile(Predicate<? super T> predicate)MutableList<T>SynchronizedMutableList. takeWhile(Predicate<? super T> predicate)MutableList<T>UnmodifiableMutableList. takeWhile(Predicate<? super T> predicate)MutableList<T>AbstractListAdapter. tap(Procedure<? super T> procedure)MutableList<T>AbstractMutableList. tap(Procedure<? super T> procedure)MutableList<T>MultiReaderFastList.UntouchableMutableList. tap(Procedure<? super T> procedure)MutableList<T>SynchronizedMutableList. tap(Procedure<? super T> procedure)MutableList<T>UnmodifiableMutableList. tap(Procedure<? super T> procedure)MutableList<T>AbstractMutableList.SubList. toReversed()MutableList<T>MultiReaderFastList. toReversed()MutableList<T>MultiReaderFastList.UntouchableMutableList. toReversed()MutableList<T>SynchronizedMutableList. toReversed()MutableList<T>UnmodifiableMutableList. toReversed()MutableList<T>AbstractMutableList. toSortedList()MutableList<T>MultiReaderFastList.UntouchableMutableList. with(T element)<T> MutableList<T>MutableListFactoryImpl. with(T... items)Creates a new list using the passeditemsargument as the backing store.MutableList<T>UnmodifiableMutableList. with(T element)MutableList<T>MultiReaderFastList.UntouchableMutableList. withAll(java.lang.Iterable<? extends T> elements)<T> MutableList<T>MutableListFactoryImpl. withAll(java.lang.Iterable<? extends T> iterable)MutableList<T>UnmodifiableMutableList. withAll(java.lang.Iterable<? extends T> elements)<T> MutableList<T>MutableListFactoryImpl. withInitialCapacity(int capacity)<T> MutableList<T>MutableListFactoryImpl. withNValues(int size, Function0<? extends T> factory)MutableList<T>MultiReaderFastList.UntouchableMutableList. without(T element)MutableList<T>UnmodifiableMutableList. without(T element)MutableList<T>MultiReaderFastList.UntouchableMutableList. withoutAll(java.lang.Iterable<? extends T> elements)MutableList<T>UnmodifiableMutableList. withoutAll(java.lang.Iterable<? extends T> elements)<S> MutableList<Pair<T,S>>AbstractListAdapter. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<T,S>>AbstractMutableList. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<T,S>>ArrayListAdapter. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<T,S>>MultiReaderFastList.UntouchableMutableList. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<T,S>>MultiReaderFastList. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<T,S>>RandomAccessListAdapter. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<T,S>>SynchronizedMutableList. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<T,S>>UnmodifiableMutableList. zip(java.lang.Iterable<S> that)MutableList<Pair<T,java.lang.Integer>>AbstractListAdapter. zipWithIndex()MutableList<Pair<T,java.lang.Integer>>AbstractMutableList. zipWithIndex()MutableList<Pair<T,java.lang.Integer>>ArrayListAdapter. zipWithIndex()MutableList<Pair<T,java.lang.Integer>>MultiReaderFastList.UntouchableMutableList. zipWithIndex()MutableList<Pair<T,java.lang.Integer>>MultiReaderFastList. zipWithIndex()MutableList<Pair<T,java.lang.Integer>>RandomAccessListAdapter. zipWithIndex()MutableList<Pair<T,java.lang.Integer>>SynchronizedMutableList. zipWithIndex()MutableList<Pair<T,java.lang.Integer>>UnmodifiableMutableList. zipWithIndex()Methods in org.eclipse.collections.impl.list.mutable that return types with arguments of type MutableList Modifier and Type Method Description <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 MutableList Modifier and Type Method Description voidMultiReaderFastList. 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 MutableList Constructor Description CompositeIterator(MutableList<FastList<E>> newLists)MultiReaderFastList(MutableList<T> newDelegate)MultiReaderFastList(MutableList<T> newDelegate, java.util.concurrent.locks.ReadWriteLock newLock)RandomAccessUnmodifiableMutableList(MutableList<? extends T> mutableList)SynchronizedMutableList(MutableList<T> newCollection)SynchronizedMutableList(MutableList<T> newCollection, java.lang.Object newLock)UnmodifiableMutableList(MutableList<? extends T> mutableList)UntouchableMutableList(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 MutableList Modifier and Type Class Description classBoxedMutableBooleanListA boxed view of aMutableBooleanList.classBoxedMutableByteListA boxed view of aMutableByteList.classBoxedMutableCharListA boxed view of aMutableCharList.classBoxedMutableDoubleListA boxed view of aMutableDoubleList.classBoxedMutableFloatListA boxed view of aMutableFloatList.classBoxedMutableIntListA boxed view of aMutableIntList.classBoxedMutableLongListA boxed view of aMutableLongList.classBoxedMutableShortListA boxed view of aMutableShortList.Methods in org.eclipse.collections.impl.list.mutable.primitive that return MutableList Modifier and Type Method Description MutableList<java.lang.Boolean>BooleanArrayList. boxed()MutableList<java.lang.Byte>ByteArrayList. boxed()MutableList<java.lang.Character>CharArrayList. boxed()MutableList<java.lang.Double>DoubleArrayList. boxed()MutableList<java.lang.Float>FloatArrayList. boxed()MutableList<java.lang.Integer>IntArrayList. boxed()MutableList<java.lang.Long>LongArrayList. boxed()MutableList<java.lang.Short>ShortArrayList. boxed()MutableList<java.lang.Boolean>SynchronizedBooleanList. boxed()MutableList<java.lang.Byte>SynchronizedByteList. boxed()MutableList<java.lang.Character>SynchronizedCharList. boxed()MutableList<java.lang.Double>SynchronizedDoubleList. boxed()MutableList<java.lang.Float>SynchronizedFloatList. boxed()MutableList<java.lang.Integer>SynchronizedIntList. boxed()MutableList<java.lang.Long>SynchronizedLongList. boxed()MutableList<java.lang.Short>SynchronizedShortList. boxed()MutableList<java.lang.Boolean>UnmodifiableBooleanList. boxed()MutableList<java.lang.Byte>UnmodifiableByteList. boxed()MutableList<java.lang.Character>UnmodifiableCharList. boxed()MutableList<java.lang.Double>UnmodifiableDoubleList. boxed()MutableList<java.lang.Float>UnmodifiableFloatList. boxed()MutableList<java.lang.Integer>UnmodifiableIntList. boxed()MutableList<java.lang.Long>UnmodifiableLongList. boxed()MutableList<java.lang.Short>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.MutableList<java.lang.Boolean>BoxedMutableBooleanList. subList(int fromIndex, int toIndex)MutableList<java.lang.Byte>BoxedMutableByteList. subList(int fromIndex, int toIndex)MutableList<java.lang.Character>BoxedMutableCharList. subList(int fromIndex, int toIndex)MutableList<java.lang.Double>BoxedMutableDoubleList. subList(int fromIndex, int toIndex)MutableList<java.lang.Float>BoxedMutableFloatList. subList(int fromIndex, int toIndex)MutableList<java.lang.Integer>BoxedMutableIntList. subList(int fromIndex, int toIndex)MutableList<java.lang.Long>BoxedMutableLongList. subList(int fromIndex, int toIndex)MutableList<java.lang.Short>BoxedMutableShortList. subList(int fromIndex, int toIndex)<T> MutableList<ByteObjectPair<T>>ByteArrayList. zip(java.lang.Iterable<T> iterable)<T> MutableList<CharObjectPair<T>>CharArrayList. zip(java.lang.Iterable<T> iterable)<T> MutableList<DoubleObjectPair<T>>DoubleArrayList. zip(java.lang.Iterable<T> iterable)<T> MutableList<FloatObjectPair<T>>FloatArrayList. zip(java.lang.Iterable<T> iterable)<T> MutableList<IntObjectPair<T>>IntArrayList. zip(java.lang.Iterable<T> iterable)<T> MutableList<LongObjectPair<T>>LongArrayList. zip(java.lang.Iterable<T> iterable)<T> MutableList<ShortObjectPair<T>>ShortArrayList. zip(java.lang.Iterable<T> iterable)<T> MutableList<BooleanObjectPair<T>>SynchronizedBooleanList. zip(java.lang.Iterable<T> iterable)<T> MutableList<ByteObjectPair<T>>SynchronizedByteList. zip(java.lang.Iterable<T> iterable)<T> MutableList<CharObjectPair<T>>SynchronizedCharList. zip(java.lang.Iterable<T> iterable)<T> MutableList<DoubleObjectPair<T>>SynchronizedDoubleList. zip(java.lang.Iterable<T> iterable)<T> MutableList<FloatObjectPair<T>>SynchronizedFloatList. zip(java.lang.Iterable<T> iterable)<T> MutableList<IntObjectPair<T>>SynchronizedIntList. zip(java.lang.Iterable<T> iterable)<T> MutableList<LongObjectPair<T>>SynchronizedLongList. zip(java.lang.Iterable<T> iterable)<T> MutableList<ShortObjectPair<T>>SynchronizedShortList. zip(java.lang.Iterable<T> iterable)<T> MutableList<BooleanObjectPair<T>>UnmodifiableBooleanList. zip(java.lang.Iterable<T> iterable)<T> MutableList<ByteObjectPair<T>>UnmodifiableByteList. zip(java.lang.Iterable<T> iterable)<T> MutableList<CharObjectPair<T>>UnmodifiableCharList. zip(java.lang.Iterable<T> iterable)<T> MutableList<DoubleObjectPair<T>>UnmodifiableDoubleList. zip(java.lang.Iterable<T> iterable)<T> MutableList<FloatObjectPair<T>>UnmodifiableFloatList. zip(java.lang.Iterable<T> iterable)<T> MutableList<IntObjectPair<T>>UnmodifiableIntList. zip(java.lang.Iterable<T> iterable)<T> MutableList<LongObjectPair<T>>UnmodifiableLongList. zip(java.lang.Iterable<T> iterable)<T> MutableList<ShortObjectPair<T>>UnmodifiableShortList. zip(java.lang.Iterable<T> iterable)MutableList<BooleanBooleanPair>SynchronizedBooleanList. zipBoolean(BooleanIterable iterable)MutableList<BooleanBooleanPair>UnmodifiableBooleanList. zipBoolean(BooleanIterable iterable)MutableList<ByteBytePair>ByteArrayList. zipByte(ByteIterable iterable)MutableList<ByteBytePair>SynchronizedByteList. zipByte(ByteIterable iterable)MutableList<ByteBytePair>UnmodifiableByteList. zipByte(ByteIterable iterable)MutableList<CharCharPair>CharArrayList. zipChar(CharIterable iterable)MutableList<CharCharPair>SynchronizedCharList. zipChar(CharIterable iterable)MutableList<CharCharPair>UnmodifiableCharList. zipChar(CharIterable iterable)MutableList<DoubleDoublePair>DoubleArrayList. zipDouble(DoubleIterable iterable)MutableList<DoubleDoublePair>SynchronizedDoubleList. zipDouble(DoubleIterable iterable)MutableList<DoubleDoublePair>UnmodifiableDoubleList. zipDouble(DoubleIterable iterable)MutableList<FloatFloatPair>FloatArrayList. zipFloat(FloatIterable iterable)MutableList<FloatFloatPair>SynchronizedFloatList. zipFloat(FloatIterable iterable)MutableList<FloatFloatPair>UnmodifiableFloatList. zipFloat(FloatIterable iterable)MutableList<IntIntPair>IntArrayList. zipInt(IntIterable iterable)MutableList<IntIntPair>SynchronizedIntList. zipInt(IntIterable iterable)MutableList<IntIntPair>UnmodifiableIntList. zipInt(IntIterable iterable)MutableList<LongLongPair>LongArrayList. zipLong(LongIterable iterable)MutableList<LongLongPair>SynchronizedLongList. zipLong(LongIterable iterable)MutableList<LongLongPair>UnmodifiableLongList. zipLong(LongIterable iterable)MutableList<ShortShortPair>ShortArrayList. zipShort(ShortIterable iterable)MutableList<ShortShortPair>SynchronizedShortList. zipShort(ShortIterable iterable)MutableList<ShortShortPair>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 MutableList Modifier and Type Method Description MutableList<V>ImmutableByteObjectEmptyMap. toList()MutableList<V>ImmutableByteObjectHashMap. toList()MutableList<V>ImmutableByteObjectSingletonMap. toList()MutableList<V>ImmutableCharObjectEmptyMap. toList()MutableList<V>ImmutableCharObjectHashMap. toList()MutableList<V>ImmutableCharObjectSingletonMap. toList()MutableList<V>ImmutableDoubleObjectEmptyMap. toList()MutableList<V>ImmutableDoubleObjectHashMap. toList()MutableList<V>ImmutableDoubleObjectSingletonMap. toList()MutableList<V>ImmutableFloatObjectEmptyMap. toList()MutableList<V>ImmutableFloatObjectHashMap. toList()MutableList<V>ImmutableFloatObjectSingletonMap. toList()MutableList<V>ImmutableIntObjectEmptyMap. toList()MutableList<V>ImmutableIntObjectHashMap. toList()MutableList<V>ImmutableIntObjectSingletonMap. toList()MutableList<V>ImmutableLongObjectEmptyMap. toList()MutableList<V>ImmutableLongObjectHashMap. toList()MutableList<V>ImmutableLongObjectSingletonMap. toList()MutableList<V>ImmutableShortObjectEmptyMap. toList()MutableList<V>ImmutableShortObjectHashMap. toList()MutableList<V>ImmutableShortObjectSingletonMap. toList()MutableList<V>ImmutableByteObjectEmptyMap. toSortedList()MutableList<V>ImmutableByteObjectEmptyMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableByteObjectHashMap. toSortedList()MutableList<V>ImmutableByteObjectHashMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableByteObjectSingletonMap. toSortedList()MutableList<V>ImmutableByteObjectSingletonMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableCharObjectEmptyMap. toSortedList()MutableList<V>ImmutableCharObjectEmptyMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableCharObjectHashMap. toSortedList()MutableList<V>ImmutableCharObjectHashMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableCharObjectSingletonMap. toSortedList()MutableList<V>ImmutableCharObjectSingletonMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableDoubleObjectEmptyMap. toSortedList()MutableList<V>ImmutableDoubleObjectEmptyMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableDoubleObjectHashMap. toSortedList()MutableList<V>ImmutableDoubleObjectHashMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableDoubleObjectSingletonMap. toSortedList()MutableList<V>ImmutableDoubleObjectSingletonMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableFloatObjectEmptyMap. toSortedList()MutableList<V>ImmutableFloatObjectEmptyMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableFloatObjectHashMap. toSortedList()MutableList<V>ImmutableFloatObjectHashMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableFloatObjectSingletonMap. toSortedList()MutableList<V>ImmutableFloatObjectSingletonMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableIntObjectEmptyMap. toSortedList()MutableList<V>ImmutableIntObjectEmptyMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableIntObjectHashMap. toSortedList()MutableList<V>ImmutableIntObjectHashMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableIntObjectSingletonMap. toSortedList()MutableList<V>ImmutableIntObjectSingletonMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableLongObjectEmptyMap. toSortedList()MutableList<V>ImmutableLongObjectEmptyMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableLongObjectHashMap. toSortedList()MutableList<V>ImmutableLongObjectHashMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableLongObjectSingletonMap. toSortedList()MutableList<V>ImmutableLongObjectSingletonMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableShortObjectEmptyMap. toSortedList()MutableList<V>ImmutableShortObjectEmptyMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableShortObjectHashMap. toSortedList()MutableList<V>ImmutableShortObjectHashMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>ImmutableShortObjectSingletonMap. toSortedList()MutableList<V>ImmutableShortObjectSingletonMap. toSortedList(java.util.Comparator<? super V> comparator)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableByteObjectEmptyMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableByteObjectHashMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableByteObjectSingletonMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableCharObjectEmptyMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableCharObjectHashMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableCharObjectSingletonMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableDoubleObjectEmptyMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableDoubleObjectHashMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableDoubleObjectSingletonMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableFloatObjectEmptyMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableFloatObjectHashMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableFloatObjectSingletonMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableIntObjectEmptyMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableIntObjectHashMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableIntObjectSingletonMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableLongObjectEmptyMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableLongObjectHashMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableLongObjectSingletonMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableShortObjectEmptyMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>ImmutableShortObjectHashMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.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 MutableList Modifier and Type Method Description MutableList<V>UnmodifiableMutableMap. toList()MutableList<V>UnmodifiableMutableMap. toSortedList()MutableList<V>UnmodifiableMutableMap. toSortedList(java.util.Comparator<? super V> comparator)Methods in org.eclipse.collections.impl.map.mutable with parameters of type MutableList Modifier and Type Method Description private voidUnifiedMap.ValuesCollection. chainedAddToList(java.lang.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 MutableList Modifier and Type Method Description MutableList<V>ByteObjectHashMap. toList()MutableList<V>CharObjectHashMap. toList()MutableList<V>DoubleObjectHashMap. toList()MutableList<V>FloatObjectHashMap. toList()MutableList<V>IntObjectHashMap. toList()MutableList<V>LongObjectHashMap. toList()MutableList<V>ShortObjectHashMap. toList()MutableList<V>SynchronizedByteObjectMap. toList()MutableList<V>SynchronizedCharObjectMap. toList()MutableList<V>SynchronizedDoubleObjectMap. toList()MutableList<V>SynchronizedFloatObjectMap. toList()MutableList<V>SynchronizedIntObjectMap. toList()MutableList<V>SynchronizedLongObjectMap. toList()MutableList<V>SynchronizedShortObjectMap. toList()MutableList<V>UnmodifiableByteObjectMap. toList()MutableList<V>UnmodifiableCharObjectMap. toList()MutableList<V>UnmodifiableDoubleObjectMap. toList()MutableList<V>UnmodifiableFloatObjectMap. toList()MutableList<V>UnmodifiableIntObjectMap. toList()MutableList<V>UnmodifiableLongObjectMap. toList()MutableList<V>UnmodifiableShortObjectMap. toList()MutableList<V>SynchronizedByteObjectMap. toSortedList()MutableList<V>SynchronizedByteObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>SynchronizedCharObjectMap. toSortedList()MutableList<V>SynchronizedCharObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>SynchronizedDoubleObjectMap. toSortedList()MutableList<V>SynchronizedDoubleObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>SynchronizedFloatObjectMap. toSortedList()MutableList<V>SynchronizedFloatObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>SynchronizedIntObjectMap. toSortedList()MutableList<V>SynchronizedIntObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>SynchronizedLongObjectMap. toSortedList()MutableList<V>SynchronizedLongObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>SynchronizedShortObjectMap. toSortedList()MutableList<V>SynchronizedShortObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>UnmodifiableByteObjectMap. toSortedList()MutableList<V>UnmodifiableByteObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>UnmodifiableCharObjectMap. toSortedList()MutableList<V>UnmodifiableCharObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>UnmodifiableDoubleObjectMap. toSortedList()MutableList<V>UnmodifiableDoubleObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>UnmodifiableFloatObjectMap. toSortedList()MutableList<V>UnmodifiableFloatObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>UnmodifiableIntObjectMap. toSortedList()MutableList<V>UnmodifiableIntObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>UnmodifiableLongObjectMap. toSortedList()MutableList<V>UnmodifiableLongObjectMap. toSortedList(java.util.Comparator<? super V> comparator)MutableList<V>UnmodifiableShortObjectMap. toSortedList()MutableList<V>UnmodifiableShortObjectMap. toSortedList(java.util.Comparator<? super V> comparator)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>SynchronizedByteObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>SynchronizedCharObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>SynchronizedDoubleObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>SynchronizedFloatObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>SynchronizedIntObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>SynchronizedLongObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>SynchronizedShortObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>UnmodifiableByteObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>UnmodifiableCharObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>UnmodifiableDoubleObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>UnmodifiableFloatObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>UnmodifiableIntObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.Comparable<? super VV>>
MutableList<V>UnmodifiableLongObjectMap. toSortedListBy(Function<? super V,? extends VV> function)<VV extends java.lang.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 MutableList Modifier and Type Method Description <R> MutableList<R>OrderedMapAdapter. collect(Function<? super V,? extends R> function)<VV> MutableList<VV>UnmodifiableMutableOrderedMap. collect(Function<? super V,? extends VV> function)<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)MutableList<V>OrderedMapAdapter. distinct()MutableList<V>UnmodifiableMutableOrderedMap. distinct()<R> MutableList<R>OrderedMapAdapter. flatCollect(Function<? super V,? extends java.lang.Iterable<R>> function)<VV> MutableList<VV>UnmodifiableMutableOrderedMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<P,VV>
MutableList<VV>UnmodifiableMutableOrderedMap. flatCollectWith(Function2<? super V,? super P,? extends java.lang.Iterable<VV>> function, P parameter)MutableList<V>OrderedMapAdapter. reject(Predicate<? super V> predicate)MutableList<V>UnmodifiableMutableOrderedMap. reject(Predicate<? super V> predicate)<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)MutableList<V>OrderedMapAdapter. select(Predicate<? super V> predicate)MutableList<V>UnmodifiableMutableOrderedMap. select(Predicate<? super V> predicate)<S> MutableList<S>OrderedMapAdapter. selectInstancesOf(java.lang.Class<S> clazz)<S> MutableList<S>UnmodifiableMutableOrderedMap. selectInstancesOf(java.lang.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)MutableList<V>UnmodifiableMutableOrderedMap. toList()MutableList<V>UnmodifiableMutableOrderedMap. toSortedList()MutableList<V>UnmodifiableMutableOrderedMap. toSortedList(java.util.Comparator<? super V> comparator)<S> MutableList<Pair<V,S>>OrderedMapAdapter. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<V,S>>UnmodifiableMutableOrderedMap. zip(java.lang.Iterable<S> that)MutableList<Pair<V,java.lang.Integer>>OrderedMapAdapter. zipWithIndex()MutableList<Pair<V,java.lang.Integer>>UnmodifiableMutableOrderedMap. zipWithIndex() -
Uses of MutableList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableList Modifier and Type Method Description <R> MutableList<R>AbstractMutableSortedMap. collect(Function<? super V,? extends R> function)<R> MutableList<R>SynchronizedSortedMap. collect(Function<? super V,? extends R> function)<R> MutableList<R>UnmodifiableTreeMap. collect(Function<? super V,? extends R> function)<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)MutableList<V>SortedMapAdapter. distinct()MutableList<V>SynchronizedSortedMap. distinct()MutableList<V>TreeSortedMap. distinct()MutableList<V>UnmodifiableTreeMap. distinct()<R> MutableList<R>AbstractMutableSortedMap. flatCollect(Function<? super V,? extends java.lang.Iterable<R>> function)<R> MutableList<R>SynchronizedSortedMap. flatCollect(Function<? super V,? extends java.lang.Iterable<R>> function)<R> MutableList<R>UnmodifiableTreeMap. flatCollect(Function<? super V,? extends java.lang.Iterable<R>> function)MutableList<V>AbstractMutableSortedMap. reject(Predicate<? super V> predicate)MutableList<V>SynchronizedSortedMap. reject(Predicate<? super V> predicate)MutableList<V>UnmodifiableTreeMap. reject(Predicate<? super V> predicate)<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)MutableList<V>AbstractMutableSortedMap. select(Predicate<? super V> predicate)MutableList<V>SynchronizedSortedMap. select(Predicate<? super V> predicate)MutableList<V>UnmodifiableTreeMap. select(Predicate<? super V> predicate)<S> MutableList<S>AbstractMutableSortedMap. selectInstancesOf(java.lang.Class<S> clazz)<S> MutableList<S>SynchronizedSortedMap. selectInstancesOf(java.lang.Class<S> clazz)<S> MutableList<S>UnmodifiableTreeMap. selectInstancesOf(java.lang.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)MutableList<V>UnmodifiableTreeMap. toList()MutableList<V>UnmodifiableTreeMap. toSortedList()MutableList<V>UnmodifiableTreeMap. toSortedList(java.util.Comparator<? super V> comparator)<S> MutableList<Pair<V,S>>AbstractMutableSortedMap. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<V,S>>SynchronizedSortedMap. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<V,S>>UnmodifiableTreeMap. zip(java.lang.Iterable<S> that)MutableList<Pair<V,java.lang.Integer>>AbstractMutableSortedMap. zipWithIndex()MutableList<Pair<V,java.lang.Integer>>SynchronizedSortedMap. zipWithIndex()MutableList<Pair<V,java.lang.Integer>>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 MutableList Modifier and Type Method Description private voidUnifiedMapWithHashingStrategy.ValuesCollection. chainedAddToList(java.lang.Object[] chain, MutableList<V> replace) -
Uses of MutableList in org.eclipse.collections.impl.multimap.list
Methods in org.eclipse.collections.impl.multimap.list that return MutableList Modifier and Type Method Description protected MutableList<V>FastListMultimap. createCollection()protected MutableList<V>MultiReaderFastListMultimap. createCollection()protected MutableList<V>SynchronizedPutFastListMultimap. createCollection()MutableList<V>SynchronizedListMultimap. get(K key)MutableList<V>SynchronizedListMultimap. getIfAbsentPutAll(K key, java.lang.Iterable<? extends V> values)MutableList<V>SynchronizedListMultimap. removeAll(java.lang.Object key)MutableList<V>SynchronizedListMultimap. replaceValues(K key, java.lang.Iterable<? extends V> values)Methods in org.eclipse.collections.impl.multimap.list that return types with arguments of type MutableList Modifier and Type Method Description protected 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 MutableList Modifier and Type Method Description voidAbstractMutableListMultimap. 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 MutableList Modifier and Type Field Description private MutableList<T>PartitionFastList. rejectedprivate MutableList<T>PartitionFastList. selectedMethods in org.eclipse.collections.impl.partition.list that return MutableList Modifier and Type Method Description MutableList<T>PartitionFastList. getRejected()MutableList<T>PartitionFastList. getSelected() -
Uses of MutableList in org.eclipse.collections.impl.partition.stack
Fields in org.eclipse.collections.impl.partition.stack declared as MutableList Modifier and Type Field Description private MutableList<T>PartitionArrayStack. rejectedprivate MutableList<T>PartitionArrayStack. selected -
Uses of MutableList in org.eclipse.collections.impl.set.mutable
Fields in org.eclipse.collections.impl.set.mutable declared as MutableList Modifier and Type Field Description private MutableList<MultiReaderUnifiedSet.UntouchableIterator<T>>MultiReaderUnifiedSet.UntouchableMutableSet. requestedIteratorsMethods in org.eclipse.collections.impl.set.mutable that return types with arguments of type MutableList Modifier and Type Method Description <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 MutableList Modifier and Type Method Description <V> MutableList<V>SortedSetAdapter. collect(Function<? super T,? extends V> function)<V> MutableList<V>SynchronizedSortedSet. collect(Function<? super T,? extends V> function)<V> MutableList<V>TreeSortedSet. collect(Function<? super T,? extends V> function)<V> MutableList<V>UnmodifiableSortedSet. collect(Function<? super T,? extends V> function)<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>TreeSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<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 java.lang.Iterable<V>> function)<V> MutableList<V>SynchronizedSortedSet. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V> MutableList<V>TreeSortedSet. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V> MutableList<V>UnmodifiableSortedSet. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<S> MutableList<Pair<T,S>>SortedSetAdapter. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<T,S>>SynchronizedSortedSet. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<T,S>>TreeSortedSet. zip(java.lang.Iterable<S> that)<S> MutableList<Pair<T,S>>UnmodifiableSortedSet. zip(java.lang.Iterable<S> that) -
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 MutableList Modifier and Type Method Description <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 MutableList Modifier and Type Field Description private MutableList<T>ImmutableArrayStack. delegateDeprecated.Methods in org.eclipse.collections.impl.stack.immutable that return MutableList Modifier and Type Method Description MutableList<T>ImmutableArrayStack. toList()Deprecated.MutableList<T>ImmutableArrayStack. toSortedList()Deprecated.MutableList<T>ImmutableArrayStack. toSortedList(java.util.Comparator<? super T> comparator)Deprecated.Constructors in org.eclipse.collections.impl.stack.immutable with parameters of type MutableList Constructor Description ImmutableArrayStack(MutableList<T> newElements)Deprecated. -
Uses of MutableList in org.eclipse.collections.impl.stack.mutable
Fields in org.eclipse.collections.impl.stack.mutable declared as MutableList Modifier and Type Field Description private MutableList<T>ArrayStack. delegateMethods in org.eclipse.collections.impl.stack.mutable that return MutableList Modifier and Type Method Description MutableList<T>ArrayStack. toList()MutableList<T>SynchronizedStack. toList()MutableList<T>UnmodifiableStack. toList()MutableList<T>ArrayStack. toSortedList()MutableList<T>ArrayStack. toSortedList(java.util.Comparator<? super T> comparator)MutableList<T>SynchronizedStack. toSortedList()MutableList<T>SynchronizedStack. toSortedList(java.util.Comparator<? super T> comparator)MutableList<T>UnmodifiableStack. toSortedList()MutableList<T>UnmodifiableStack. toSortedList(java.util.Comparator<? super T> comparator) -
Uses of MutableList in org.eclipse.collections.impl.tuple
Methods in org.eclipse.collections.impl.tuple that return MutableList Modifier and Type Method Description static <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 MutableList Modifier and Type Method Description static MutableList<java.lang.String>StringIterate. chunk(java.lang.String string, int size)Partitions String in fixed size chunks.static <T,V>
MutableList<V>ArrayIterate. collect(T[] objectArray, Function<? super T,? extends V> function)static <T,A>
MutableList<A>ListIterate. collect(java.util.List<T> list, Function<? super T,? extends A> function)static <K,V,A>
MutableList<A>MapIterate. collect(java.util.Map<K,V> map, Function<? super V,? extends A> function)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(java.util.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(java.util.List<T> list, Function2<? super T,? super P,? extends A> function, P parameter)static <T,A>
MutableList<A>ListIterate. collectWithIndex(java.util.List<T> list, ObjectIntToObjectFunction<? super T,? extends A> function)static MutableList<java.lang.String>StringIterate. csvTokensToList(java.lang.String string)Deprecated.in 3.0.static MutableList<java.lang.String>StringIterate. csvTokensToReverseSortedList(java.lang.String string)Deprecated.in 3.0.static MutableList<java.lang.String>StringIterate. csvTokensToSortedList(java.lang.String string)Deprecated.in 3.0.static MutableList<java.lang.String>StringIterate. csvTrimmedTokensToList(java.lang.String string)Deprecated.in 3.0.static MutableList<java.lang.String>StringIterate. csvTrimmedTokensToSortedList(java.lang.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>ListIterate. distinct(java.util.List<T> list)static <T> MutableList<T>ListIterate. distinct(java.util.List<T> list, HashingStrategy<? super T> hashingStrategy)static <T,V>
MutableList<T>ListIterate. distinctBy(java.util.List<T> list, Function<? super T,? extends V> function)static <T> MutableList<T>ArrayIterate. drop(T[] array, int count)static <T> MutableList<T>ListIterate. drop(java.util.List<T> list, int count)static <T> MutableList<T>ArrayListIterate. dropWhile(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> MutableList<T>ListIterate. dropWhile(java.util.List<T> list, Predicate<? super T> predicate)static <T,V>
MutableList<V>ArrayIterate. flatCollect(T[] objectArray, Function<? super T,? extends java.lang.Iterable<V>> function)static <T,A>
MutableList<A>ListIterate. flatCollect(java.util.List<T> list, Function<? super T,? extends java.lang.Iterable<A>> function)static <T> MutableList<T>ArrayIterate. reject(T[] objectArray, Predicate<? super T> predicate)static <T> MutableList<T>ListIterate. reject(java.util.List<T> list, Predicate<? super T> predicate)static <K,V>
MutableList<V>MapIterate. reject(java.util.Map<K,V> map, Predicate<? super V> predicate)static <T,P>
MutableList<T>ArrayIterate. rejectWith(T[] objectArray, Predicate2<? super T,P> predicate, P parameter)static <T,IV>
MutableList<T>ListIterate. rejectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T> MutableList<T>ArrayIterate. select(T[] objectArray, Predicate<? super T> predicate)static <T> MutableList<T>ListIterate. select(java.util.List<T> list, Predicate<? super T> predicate)static <K,V>
MutableList<V>MapIterate. select(java.util.Map<K,V> map, Predicate<? super V> predicate)static <T> MutableList<T>ArrayListIterate. selectInstancesOf(java.util.ArrayList<?> list, java.lang.Class<T> clazz)static <T,S>
MutableList<S>ListIterate. selectInstancesOf(java.util.List<T> list, java.lang.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(java.util.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>ListIterate. take(java.util.List<T> list, int count)static <T> MutableList<T>ArrayListIterate. takeWhile(java.util.ArrayList<T> list, Predicate<? super T> predicate)static <T> MutableList<T>ListIterate. takeWhile(java.util.List<T> list, Predicate<? super T> predicate)static MutableList<java.lang.String>StringIterate. tokensToList(java.lang.String string, java.lang.String separator)Converts a string of tokens separated by the specified separator to aMutableList.static MutableList<java.lang.String>StringIterate. tokensToReverseSortedList(java.lang.String string, java.lang.String separator)Converts a string of tokens separated by the specified separator to a reverse sortedMutableList.static MutableList<java.lang.String>StringIterate. tokensToSortedList(java.lang.String string, java.lang.String separator)Converts a string of tokens separated by the specified separator to a sortedMutableList.static MutableList<java.lang.Character>StringIterate. toList(java.lang.String string)static <K,V>
MutableList<Pair<K,V>>MapIterate. toListOfPairs(java.util.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<java.lang.Character>StringIterate. toLowercaseList(java.lang.String string)static <T extends java.lang.Comparable<? super T>>
MutableList<T>Iterate. toSortedList(java.lang.Iterable<T> iterable)Return the specified collection as a sorted List.static <T> MutableList<T>Iterate. toSortedList(java.lang.Iterable<T> iterable, java.util.Comparator<? super T> comparator)Return the specified collection as a sorted List using the specified Comparator.static <K,V>
MutableList<V>MapIterate. toSortedList(java.util.Map<K,V> map, java.util.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<java.lang.Character>StringIterate. toUppercaseList(java.lang.String string)static MutableList<java.lang.String>StringIterate. trimmedTokensToList(java.lang.String string, java.lang.String separator)Converts a string of tokens separated by the specified separator to aMutableList.static MutableList<java.lang.String>StringIterate. trimmedTokensToSortedList(java.lang.String string, java.lang.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>>ArrayListIterate. zip(java.util.ArrayList<X> xs, java.lang.Iterable<Y> ys)static <X,Y>
MutableList<Pair<X,Y>>ListIterate. zip(java.util.List<X> list, java.lang.Iterable<Y> iterable)static <T> MutableList<Pair<T,java.lang.Integer>>ArrayIterate. zipWithIndex(T... array)static <T> MutableList<Pair<T,java.lang.Integer>>ArrayListIterate. zipWithIndex(java.util.ArrayList<T> list)static <T> MutableList<Pair<T,java.lang.Integer>>ListIterate. zipWithIndex(java.util.List<T> list)Methods in org.eclipse.collections.impl.utility that return types with arguments of type MutableList Modifier and Type Method Description static <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(java.util.ArrayList<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T,IV>
Twin<MutableList<T>>Iterate. selectAndRejectWith(java.lang.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(java.util.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 MutableList Modifier and Type Method Description static <T,V>
MutableList<V>IterableIterate. collect(java.lang.Iterable<T> iterable, Function<? super T,? extends V> function)static <T,A>
MutableList<A>RandomAccessListIterate. collect(java.util.List<T> list, Function<? super T,? extends A> function)static <T,V>
MutableList<V>IterableIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,? extends V> function)static <T,A>
MutableList<A>RandomAccessListIterate. collectIf(java.util.List<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function)static <T,P,V>
MutableList<V>IterableIterate. collectWith(java.lang.Iterable<T> iterable, Function2<? super T,? super P,? extends V> function, P parameter)static <T,A>
MutableList<A>RandomAccessListIterate. collectWithIndex(java.util.List<T> list, ObjectIntToObjectFunction<? super T,? extends A> function)static <T> MutableList<T>IterableIterate. distinct(java.lang.Iterable<T> iterable)static <T> MutableList<T>IterableIterate. distinct(java.lang.Iterable<T> iterable, HashingStrategy<? super T> hashingStrategy)static <T> MutableList<T>IteratorIterate. distinct(java.util.Iterator<T> iterator)static <T> MutableList<T>IteratorIterate. distinct(java.util.Iterator<T> iterator, HashingStrategy<? super T> hashingStrategy)static <T> MutableList<T>RandomAccessListIterate. distinct(java.util.List<T> list)static <T> MutableList<T>RandomAccessListIterate. distinct(java.util.List<T> list, HashingStrategy<? super T> hashingStrategy)static <T> MutableList<T>RandomAccessListIterate. drop(java.util.List<T> list, int count)static <T> MutableList<T>RandomAccessListIterate. dropWhile(java.util.List<T> list, Predicate<? super T> predicate)static <T,V>
MutableList<V>IterableIterate. flatCollect(java.lang.Iterable<T> iterable, Function<? super T,? extends java.lang.Iterable<V>> function)static <T,A>
MutableList<A>RandomAccessListIterate. flatCollect(java.util.List<T> list, Function<? super T,? extends java.lang.Iterable<A>> function)static <T> MutableList<T>IterableIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> MutableList<T>RandomAccessListIterate. reject(java.util.List<T> list, Predicate<? super T> predicate)static <T,IV>
MutableList<T>RandomAccessListIterate. rejectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T> MutableList<T>IterableIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)static <T> MutableList<T>RandomAccessListIterate. select(java.util.List<T> list, Predicate<? super T> predicate)static <T> MutableList<T>IterableIterate. selectInstancesOf(java.lang.Iterable<?> iterable, java.lang.Class<T> clazz)static <T> MutableList<T>RandomAccessListIterate. selectInstancesOf(java.util.List<?> list, java.lang.Class<T> clazz)static <T,IV>
MutableList<T>RandomAccessListIterate. selectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T> MutableList<T>RandomAccessListIterate. take(java.util.List<T> list, int count)static <T> MutableList<T>RandomAccessListIterate. takeWhile(java.util.List<T> list, Predicate<? super T> predicate)static <X,Y>
MutableList<Pair<X,Y>>IterableIterate. zip(java.lang.Iterable<X> xs, java.lang.Iterable<Y> ys)static <X,Y>
MutableList<Pair<X,Y>>RandomAccessListIterate. zip(java.util.List<X> list, java.lang.Iterable<Y> iterable)static <T> MutableList<Pair<T,java.lang.Integer>>IterableIterate. zipWithIndex(java.lang.Iterable<T> iterable)static <T> MutableList<Pair<T,java.lang.Integer>>RandomAccessListIterate. zipWithIndex(java.util.List<T> list)Methods in org.eclipse.collections.impl.utility.internal that return types with arguments of type MutableList Modifier and Type Method Description static <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(java.lang.Iterable<T> iterable, Predicate2<? super T,? super IV> predicate, IV injectedValue)static <T,P>
Twin<MutableList<T>>IteratorIterate. selectAndRejectWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter)static <T,IV>
Twin<MutableList<T>>RandomAccessListIterate. selectAndRejectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)
-