Uses of Interface
org.eclipse.collections.api.collection.MutableCollection
Packages that use MutableCollection
Package
Description
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains mutable and immutable primitive collection API.
This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for
Multimap.This package contains interfaces for
PartitionIterable.This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains interfaces for sorted set API.
This package contains implementations of the
ImmutableBag interface.This package contains implementations of the
MutableBag interface.This package contains implementations of
MutableSortedBag.This package contains implementations of bags with user defined
HashingStrategys.This package contains implementations of the
ImmutableCollection interface.This package contains implementations of the
MutableCollection interface.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the
Iterator interface.This package contains implementations of the
FixedSizeList interface.This package contains implementations of the
ImmutableList interface.This package contains implementations of the
MutableList interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the
MapIterable interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the
Multimap interface.This package contains implementations of
FixedSizeSet.This package contains the implementations of
ImmutableSet.This package contains implementations of
MutableSet.This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of
ImmutableSortedSet.This package contains implementations of
MutableSortedSet.This package contains implementations of sets with user defined
HashingStrategys.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableCollection in org.eclipse.collections.api.bag
Subinterfaces of MutableCollection in org.eclipse.collections.api.bagModifier and TypeInterfaceDescriptioninterfaceA MultiReaderBag provides thread-safe iteration for a bag through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableBag<T>A MutableBag is a Collection whose elements are unordered and may contain duplicate entries.interface -
Uses of MutableCollection in org.eclipse.collections.api.bag.sorted
Subinterfaces of MutableCollection in org.eclipse.collections.api.bag.sorted -
Uses of MutableCollection in org.eclipse.collections.api.collection
Subinterfaces of MutableCollection in org.eclipse.collections.api.collectionModifier and TypeInterfaceDescriptioninterfaceA FixedSizeCollection is a collection that may be mutated, but cannot grow or shrink in size.Methods in org.eclipse.collections.api.collection that return MutableCollectionModifier and TypeMethodDescriptionMutableCollection.asSynchronized()Returns a synchronized wrapper backed by this collection.MutableCollection.asUnmodifiable()Returns an unmodifiable view of this collection.<V> MutableCollection<V> Returns a new MutableCollection with the results of applying the specified function to each element of the source collection.<V> MutableCollection<V> MutableCollection.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) Returns a new MutableCollection with the results of applying the specified function to each element of the source collection, but only for elements that evaluate to true for the specified predicate.<P,V> MutableCollection <V> MutableCollection.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) Same asRichIterable.collect(Function)with aFunction2and specified parameter which is passed to the block.<V> MutableCollection<V> MutableCollection.flatCollect(Function<? super T, ? extends Iterable<V>> function) flatCollectis a special case ofRichIterable.collect(Function).default <P,V> MutableCollection <V> MutableCollection.flatCollectWith(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter) MutableCollection.newEmpty()Creates a new empty mutable version of the same collection type.Returns a MutableCollection with all elements that evaluate to false for the specified predicate.<P> MutableCollection<T> MutableCollection.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) Returns a MutableCollection with all elements that evaluate to false for the specified predicate2 and parameter.Returns a MutableCollection with all elements that evaluate to true for the specified predicate.<S> MutableCollection<S> MutableCollection.selectInstancesOf(Class<S> clazz) Returns all elements of the source collection that are instances of the Classclazz.<P> MutableCollection<T> MutableCollection.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) Returns a MutableCollection with all elements that evaluate to true for the specified predicate2 and parameter.This method allows fixed size collections the ability to add elements to their existing elements.This method allows mutable and fixed size collections the ability to add elements to their existing elements.This method allows fixed size collections the ability to add multiple elements to their existing elements.This method allows mutable and fixed size collections the ability to add multiple elements to their existing elements.This method allows fixed size collections the ability to remove elements from their existing elements.This method allows mutable and fixed size collections the ability to remove elements from their existing elements.FixedSizeCollection.withoutAll(Iterable<? extends T> elements) This method allows fixed size collections the ability to remove multiple elements from their existing elements.MutableCollection.withoutAll(Iterable<? extends T> elements) This method allows mutable and fixed size collections the ability to remove multiple elements from their existing elements.<S> MutableCollection<Pair<T, S>> Deprecated.in 6.0.MutableCollection.zipWithIndex()Deprecated.in 6.0. -
Uses of MutableCollection in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive that return MutableCollectionModifier and TypeMethodDescription<V> MutableCollection<V> MutableBooleanCollection.collect(BooleanToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableByteCollection.collect(ByteToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableCharCollection.collect(CharToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableDoubleCollection.collect(DoubleToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableFloatCollection.collect(FloatToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableIntCollection.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableLongCollection.collect(LongToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableShortCollection.collect(ShortToObjectFunction<? extends V> function) -
Uses of MutableCollection in org.eclipse.collections.api.list
Subinterfaces of MutableCollection in org.eclipse.collections.api.listModifier and TypeInterfaceDescriptioninterfaceA FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.interfaceA MultiReaderList provides thread-safe iteration for a list through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableList<T>A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Uses of MutableCollection in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableCollectionModifier and TypeMethodDescription<P> MutableCollection<V> MutableMapIterable.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableCollection<S> MutableMapIterable.selectInstancesOf(Class<S> clazz) <P> MutableCollection<V> MutableMapIterable.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableCollection<Pair<V, S>> MutableMapIterable.zipWithIndex() -
Uses of MutableCollection in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCollectionModifier and TypeMethodDescription<V> MutableCollection<V> MutableObjectBooleanMap.collect(BooleanToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableObjectByteMap.collect(ByteToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableObjectCharMap.collect(CharToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableObjectDoubleMap.collect(DoubleToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableObjectFloatMap.collect(FloatToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableObjectIntMap.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableObjectLongMap.collect(LongToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableObjectShortMap.collect(ShortToObjectFunction<? extends V> function) -
Uses of MutableCollection in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableCollection -
Uses of MutableCollection in org.eclipse.collections.api.multimap
Methods in org.eclipse.collections.api.multimap that return MutableCollectionModifier and TypeMethodDescriptionMutableMultimap.getIfAbsentPutAll(K key, Iterable<? extends V> values) Puts values into multimap if there are no values already associated with key. -
Uses of MutableCollection in org.eclipse.collections.api.partition
Methods in org.eclipse.collections.api.partition that return MutableCollectionModifier and TypeMethodDescriptionPartitionMutableCollection.getRejected()PartitionMutableCollection.getSelected() -
Uses of MutableCollection in org.eclipse.collections.api.set
Subinterfaces of MutableCollection in org.eclipse.collections.api.setModifier and TypeInterfaceDescriptioninterfaceFixedSizeSet<T>A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size.interfaceA MultiReaderSet provides thread-safe iteration for a set through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableSet<T>A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.interfaceMethods in org.eclipse.collections.api.set that return MutableCollection -
Uses of MutableCollection in org.eclipse.collections.api.set.sorted
Subinterfaces of MutableCollection in org.eclipse.collections.api.set.sortedModifier and TypeInterfaceDescriptioninterfaceA MutableSortedSet is an implementation of a JCF SortedSet which provides methods matching the Smalltalk Collection protocol. -
Uses of MutableCollection in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type MutableCollectionModifier and TypeMethodDescriptionprotected voidAbstractImmutableBagIterable.removeAllFrom(Iterable<? extends T> elements, MutableCollection<T> result) -
Uses of MutableCollection in org.eclipse.collections.impl.bag.mutable
Classes in org.eclipse.collections.impl.bag.mutable that implement MutableCollectionModifier and TypeClassDescriptionclassclassclassclassHashBag<T>A HashBag is a MutableBag which uses a Map as its underlying data store.final classMultiReaderHashBag provides a thread-safe wrapper around a HashBag, using a ReentrantReadWriteLock.(package private) static final classclassA synchronized view of aMutableBag.classAn unmodifiable view of a bag. -
Uses of MutableCollection in org.eclipse.collections.impl.bag.sorted.mutable
Classes in org.eclipse.collections.impl.bag.sorted.mutable that implement MutableCollectionModifier and TypeClassDescriptionclassclassA synchronized view of aMutableSortedBag.classTreeBag<T>A TreeBag is a MutableSortedBag which uses a SortedMap as its underlying data store.classAn unmodifiable view of a SortedBag. -
Uses of MutableCollection in org.eclipse.collections.impl.bag.strategy.mutable
Classes in org.eclipse.collections.impl.bag.strategy.mutable that implement MutableCollection -
Uses of MutableCollection in org.eclipse.collections.impl.collection.immutable
Methods in org.eclipse.collections.impl.collection.immutable that return MutableCollectionModifier and TypeMethodDescriptionprotected abstract MutableCollection<T> AbstractImmutableCollection.newMutable(int size) Methods in org.eclipse.collections.impl.collection.immutable with parameters of type MutableCollectionModifier and TypeMethodDescriptionprotected voidAbstractImmutableCollection.removeAllFrom(Iterable<? extends T> elements, MutableCollection<T> result) -
Uses of MutableCollection in org.eclipse.collections.impl.collection.mutable
Classes in org.eclipse.collections.impl.collection.mutable that implement MutableCollectionModifier and TypeClassDescriptionclassclassAbstractMultiReaderMutableCollection is an abstraction that provides thread-safe collection behaviors.protected static classclassclassclassfinal classThis class provides a MutableCollection interface wrapper around a JDK Collections Collection interface instance.classA synchronized view of aMutableCollection.classAn unmodifiable view of a collection.Fields in org.eclipse.collections.impl.collection.mutable declared as MutableCollectionModifier and TypeFieldDescriptionprivate final MutableCollection<? extends T> AbstractUnmodifiableMutableCollection.collectionprotected MutableCollection<T> AbstractMultiReaderMutableCollection.UntouchableMutableCollection.delegateprivate MutableCollection<T> SynchronizedCollectionSerializationProxy.mutableCollectionprivate MutableCollection<T> UnmodifiableCollectionSerializationProxy.mutableCollectionMethods in org.eclipse.collections.impl.collection.mutable that return MutableCollectionModifier and TypeMethodDescriptionstatic <E> MutableCollection<E> CollectionAdapter.adapt(Collection<E> collection) AbstractUnmodifiableMutableCollection.asSynchronized()CollectionAdapter.asSynchronized()SynchronizedMutableCollection.asSynchronized()AbstractUnmodifiableMutableCollection.asUnmodifiable()CollectionAdapter.asUnmodifiable()SynchronizedMutableCollection.asUnmodifiable()<V> MutableCollection<V> <V> MutableCollection<V> <V> MutableCollection<V> <V> MutableCollection<V> AbstractCollectionAdapter.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableCollection<V> AbstractSynchronizedMutableCollection.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <V> MutableCollection<V> AbstractUnmodifiableMutableCollection.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <P,V> MutableCollection <V> AbstractCollectionAdapter.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,V> MutableCollection <V> AbstractSynchronizedMutableCollection.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) <P,A> MutableCollection <A> AbstractUnmodifiableMutableCollection.collectWith(Function2<? super T, ? super P, ? extends A> function, P parameter) <V> MutableCollection<V> AbstractCollectionAdapter.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableCollection<V> AbstractSynchronizedMutableCollection.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> MutableCollection<V> AbstractUnmodifiableMutableCollection.flatCollect(Function<? super T, ? extends Iterable<V>> function) protected abstract MutableCollection<T> AbstractMultiReaderMutableCollection.getDelegate()protected abstract MutableCollection<T> AbstractMultiReaderMutableCollection.UntouchableMutableCollection.getDelegate()protected MutableCollection<T> AbstractSynchronizedMutableCollection.getDelegate()protected MutableCollection<T> AbstractUnmodifiableMutableCollection.getMutableCollection()AbstractUnmodifiableMutableCollection.newEmpty()CollectionAdapter.newEmpty()Deprecated.useFastList.newList()orUnifiedSet.newSet()insteadSynchronizedMutableCollection.newEmpty()<P> MutableCollection<T> AbstractCollectionAdapter.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T> AbstractSynchronizedMutableCollection.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T> AbstractUnmodifiableMutableCollection.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> MutableCollection<S> AbstractCollectionAdapter.selectInstancesOf(Class<S> clazz) <S> MutableCollection<S> AbstractSynchronizedMutableCollection.selectInstancesOf(Class<S> clazz) <S> MutableCollection<S> AbstractUnmodifiableMutableCollection.selectInstancesOf(Class<S> clazz) <P> MutableCollection<T> AbstractCollectionAdapter.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T> AbstractSynchronizedMutableCollection.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T> AbstractUnmodifiableMutableCollection.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) AbstractUnmodifiableMutableCollection.withoutAll(Iterable<? extends T> elements) SynchronizedMutableCollection.withoutAll(Iterable<? extends T> elements) protected <E> MutableCollection<E> AbstractCollectionAdapter.wrap(Collection<E> collection) <S> MutableCollection<Pair<T, S>> <S> MutableCollection<Pair<T, S>> <S> MutableCollection<Pair<T, S>> AbstractCollectionAdapter.zipWithIndex()AbstractSynchronizedMutableCollection.zipWithIndex()AbstractUnmodifiableMutableCollection.zipWithIndex()Constructors in org.eclipse.collections.impl.collection.mutable with parameters of type MutableCollectionModifierConstructorDescriptionprotectedprotectedAbstractSynchronizedMutableCollection(MutableCollection<T> delegate, Object lock) protectedAbstractUnmodifiableMutableCollection(MutableCollection<? extends T> mutableCollection) SynchronizedCollectionSerializationProxy(MutableCollection<T> collection) (package private)SynchronizedMutableCollection(MutableCollection<T> newCollection) (package private)SynchronizedMutableCollection(MutableCollection<T> newCollection, Object newLock) UnmodifiableCollectionSerializationProxy(MutableCollection<T> collection) (package private)UnmodifiableMutableCollection(MutableCollection<? extends T> collection) protectedUntouchableMutableCollection(MutableCollection<T> delegate) -
Uses of MutableCollection in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableCollectionModifier and TypeMethodDescription<V> MutableCollection<V> AbstractSynchronizedBooleanCollection.collect(BooleanToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractSynchronizedByteCollection.collect(ByteToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractSynchronizedCharCollection.collect(CharToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractSynchronizedDoubleCollection.collect(DoubleToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractSynchronizedFloatCollection.collect(FloatToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractSynchronizedIntCollection.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractSynchronizedLongCollection.collect(LongToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractSynchronizedShortCollection.collect(ShortToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractUnmodifiableBooleanCollection.collect(BooleanToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractUnmodifiableByteCollection.collect(ByteToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractUnmodifiableCharCollection.collect(CharToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractUnmodifiableDoubleCollection.collect(DoubleToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractUnmodifiableFloatCollection.collect(FloatToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractUnmodifiableIntCollection.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractUnmodifiableLongCollection.collect(LongToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractUnmodifiableShortCollection.collect(ShortToObjectFunction<? extends V> function) -
Uses of MutableCollection in org.eclipse.collections.impl.lazy.iterator
Fields in org.eclipse.collections.impl.lazy.iterator with type parameters of type MutableCollectionModifier and TypeFieldDescriptionprivate final Function0<MutableCollection<T>> ChunkIterator.speciesNewStrategy -
Uses of MutableCollection in org.eclipse.collections.impl.list.fixed
Classes in org.eclipse.collections.impl.list.fixed that implement MutableCollectionModifier and TypeClassDescriptionclassclassprivate static classfinal classArrayAdapter<T>This class provides a MutableList wrapper around an array.(package private) final classA DoubletonList is a two-element memory efficient List.(package private) final classEmptyList<T>This class is a memory efficient list with no elements.(package private) final classThis is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).(package private) final classThis is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).(package private) final classThis is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).(package private) final classThis class is a memory efficient list with one element.(package private) final classThis is a three element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three). -
Uses of MutableCollection in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable that return MutableCollectionModifier and TypeMethodDescriptionprotected MutableCollection<T> AbstractImmutableList.newMutable(int size) -
Uses of MutableCollection in org.eclipse.collections.impl.list.mutable
Classes in org.eclipse.collections.impl.list.mutable that implement MutableCollectionModifier and TypeClassDescriptionclassclassprotected static classfinal classThis class provides a MutableList wrapper around a JDK Collections ArrayList instance.final classCompositeFastList behaves like a list, but is composed of at least one list.classFastList<T>FastList is an attempt to provide the same functionality as ArrayList without the support for concurrent modification exceptions.final classListAdapter<T>This class provides a MutableList wrapper around a JDK Collections List interface instance.final classMultiReadFastList provides a thread-safe wrapper around a FastList, using a ReentrantReadWriteLock.(package private) static final classfinal classThis class provides a MutableList wrapper around a JDK Collections List interface instance.classA synchronized view of aMutableList.classAn unmodifiable view of a list.private static final class -
Uses of MutableCollection in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableCollectionModifier and TypeClassDescriptionclassA boxed view of aMutableBooleanList.classA boxed view of aMutableByteList.classA boxed view of aMutableCharList.classA boxed view of aMutableDoubleList.classA boxed view of aMutableFloatList.classA boxed view of aMutableIntList.classA boxed view of aMutableLongList.classA boxed view of aMutableShortList. -
Uses of MutableCollection in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map that return MutableCollectionModifier and TypeMethodDescription<P> MutableCollection<V> AbstractSynchronizedMapIterable.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableCollection<S> AbstractSynchronizedMapIterable.selectInstancesOf(Class<S> clazz) <P> MutableCollection<V> AbstractSynchronizedMapIterable.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> MutableCollection<Pair<V, S>> AbstractSynchronizedMapIterable.zipWithIndex() -
Uses of MutableCollection in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCollectionModifier and TypeMethodDescription<V> MutableCollection<V> AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection.collect(BooleanToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractMutableByteValuesMap.AbstractByteValuesCollection.collect(ByteToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractMutableCharValuesMap.AbstractCharValuesCollection.collect(CharToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.collect(DoubleToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractMutableFloatValuesMap.AbstractFloatValuesCollection.collect(FloatToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractMutableIntValuesMap.AbstractIntValuesCollection.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractMutableLongValuesMap.AbstractLongValuesCollection.collect(LongToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractMutableShortValuesMap.AbstractShortValuesCollection.collect(ShortToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectBooleanHashMap.collect(BooleanToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectBooleanHashMap.ValuesCollection.collect(BooleanToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectBooleanHashMapWithHashingStrategy.collect(BooleanToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectBooleanHashMapWithHashingStrategy.ValuesCollection.collect(BooleanToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectByteHashMap.collect(ByteToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectByteHashMap.ValuesCollection.collect(ByteToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectByteHashMapWithHashingStrategy.collect(ByteToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectByteHashMapWithHashingStrategy.ValuesCollection.collect(ByteToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectCharHashMap.collect(CharToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectCharHashMap.ValuesCollection.collect(CharToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectCharHashMapWithHashingStrategy.collect(CharToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectCharHashMapWithHashingStrategy.ValuesCollection.collect(CharToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectDoubleHashMap.collect(DoubleToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectDoubleHashMap.ValuesCollection.collect(DoubleToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectDoubleHashMapWithHashingStrategy.collect(DoubleToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.collect(DoubleToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectFloatHashMap.collect(FloatToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectFloatHashMap.ValuesCollection.collect(FloatToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectFloatHashMapWithHashingStrategy.collect(FloatToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectFloatHashMapWithHashingStrategy.ValuesCollection.collect(FloatToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectIntHashMap.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectIntHashMap.ValuesCollection.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectIntHashMapWithHashingStrategy.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectIntHashMapWithHashingStrategy.ValuesCollection.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectLongHashMap.collect(LongToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectLongHashMap.ValuesCollection.collect(LongToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectLongHashMapWithHashingStrategy.collect(LongToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectLongHashMapWithHashingStrategy.ValuesCollection.collect(LongToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectShortHashMap.collect(ShortToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectShortHashMap.ValuesCollection.collect(ShortToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectShortHashMapWithHashingStrategy.collect(ShortToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectShortHashMapWithHashingStrategy.ValuesCollection.collect(ShortToObjectFunction<? extends V> function) <V1> MutableCollection<V1> SynchronizedObjectBooleanMap.collect(BooleanToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> SynchronizedObjectByteMap.collect(ByteToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> SynchronizedObjectCharMap.collect(CharToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> SynchronizedObjectDoubleMap.collect(DoubleToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> SynchronizedObjectFloatMap.collect(FloatToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> SynchronizedObjectIntMap.collect(IntToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> SynchronizedObjectLongMap.collect(LongToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> SynchronizedObjectShortMap.collect(ShortToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> UnmodifiableObjectBooleanMap.collect(BooleanToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> UnmodifiableObjectByteMap.collect(ByteToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> UnmodifiableObjectCharMap.collect(CharToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> UnmodifiableObjectDoubleMap.collect(DoubleToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> UnmodifiableObjectFloatMap.collect(FloatToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> UnmodifiableObjectIntMap.collect(IntToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> UnmodifiableObjectLongMap.collect(LongToObjectFunction<? extends V1> function) <V1> MutableCollection<V1> UnmodifiableObjectShortMap.collect(ShortToObjectFunction<? extends V1> function) -
Uses of MutableCollection in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableCollection -
Uses of MutableCollection in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableCollection -
Uses of MutableCollection in org.eclipse.collections.impl.multimap
Classes in org.eclipse.collections.impl.multimap with type parameters of type MutableCollectionModifier and TypeClassDescriptionclassAbstractMutableMultimap<K, V, C extends MutableCollection<V>>classAbstractSynchronizedPutMultimap<K, V, C extends MutableCollection<V>>Method parameters in org.eclipse.collections.impl.multimap with type arguments of type MutableCollectionModifier and TypeMethodDescriptionAbstractMutableMultimap.putAllAbstractMutableMultimap(AbstractMutableMultimap<KK, VV, MutableCollection<VV>> other) -
Uses of MutableCollection in org.eclipse.collections.impl.set
Classes in org.eclipse.collections.impl.set that implement MutableCollection -
Uses of MutableCollection in org.eclipse.collections.impl.set.fixed
Classes in org.eclipse.collections.impl.set.fixed that implement MutableCollectionModifier and TypeClassDescription(package private) class(package private) final classDoubletonSet<T>(package private) final classEmptySet<T>This class is a memory efficient list with no elements.(package private) final class(package private) classSingletonSet<T>(package private) final classTripletonSet<T> -
Uses of MutableCollection in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable that return MutableCollectionModifier and TypeMethodDescriptionprotected MutableCollection<T> AbstractImmutableSet.newMutable(int size) -
Uses of MutableCollection in org.eclipse.collections.impl.set.mutable
Classes in org.eclipse.collections.impl.set.mutable that implement MutableCollectionModifier and TypeClassDescriptionclassfinal classMultiReadUnifiedSet provides a thread-safe wrapper around a UnifiedSet, using a ReentrantReadWriteLock.(package private) static final classfinal classSetAdapter<T>This class provides a MutableSet wrapper around a JDK Collections Set interface instance.classA synchronized view of aMutableSet.classUnifiedSet<T>classAn unmodifiable view of a list. -
Uses of MutableCollection in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableCollectionModifier and TypeClassDescriptionclassA boxed view of aMutableBooleanSet.classA boxed view of aMutableByteSet.classA boxed view of aMutableCharSet.classA boxed view of aMutableDoubleSet.classA boxed view of aMutableFloatSet.classA boxed view of aMutableIntSet.classA boxed view of aMutableLongSet.classA boxed view of aMutableShortSet. -
Uses of MutableCollection in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable that return MutableCollectionModifier and TypeMethodDescriptionprotected MutableCollection<T> AbstractImmutableSortedSet.newMutable(int size) -
Uses of MutableCollection in org.eclipse.collections.impl.set.sorted.mutable
Classes in org.eclipse.collections.impl.set.sorted.mutable that implement MutableCollectionModifier and TypeClassDescriptionfinal classThis class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.classA synchronized view of aMutableSortedSet.classclassAn unmodifiable view of a SortedSet. -
Uses of MutableCollection in org.eclipse.collections.impl.set.strategy.mutable
Classes in org.eclipse.collections.impl.set.strategy.mutable that implement MutableCollection -
Uses of MutableCollection in org.eclipse.collections.impl.utility
Fields in org.eclipse.collections.impl.utility declared as MutableCollectionModifier and TypeFieldDescriptionprivate final MutableCollection<Character> StringIterate.AddCharacterToCollection.charactersprivate final MutableCollection<Character> StringIterate.AddLowercaseCharacterToCollection.charactersprivate final MutableCollection<Character> StringIterate.AddUppercaseCharacterToCollection.charactersConstructors in org.eclipse.collections.impl.utility with parameters of type MutableCollectionModifierConstructorDescriptionprivateAddCharacterToCollection(MutableCollection<Character> characters) privateAddLowercaseCharacterToCollection(MutableCollection<Character> characters) privateAddUppercaseCharacterToCollection(MutableCollection<Character> characters) -
Uses of MutableCollection in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with type parameters of type MutableCollectionModifier and TypeMethodDescriptionstatic <T, R extends MutableCollection<T>>
Rstatic <T, R extends MutableCollection<T>>
Rstatic <T, R extends MutableCollection<T>>
Rstatic <T, R extends MutableCollection<T>>
RMethods in org.eclipse.collections.impl.utility.internal with parameters of type MutableCollectionModifier and TypeMethodDescriptionstatic <T> RichIterable<RichIterable<T>> MutableCollectionIterate.chunk(MutableCollection<T> collection, int size)