Package | Description |
---|---|
com.gs.collections.api.bag |
This package contains interfaces for Bag API.
|
com.gs.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
com.gs.collections.api.collection | |
com.gs.collections.api.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
com.gs.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List . |
com.gs.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
com.gs.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
com.gs.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
com.gs.collections.api.multimap |
This package contains interfaces for
Multimap . |
com.gs.collections.api.partition |
This package contains interfaces for
PartitionIterable . |
com.gs.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set . |
com.gs.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
com.gs.collections.impl.bag.mutable |
This package contains implementations of the
MutableBag interface. |
com.gs.collections.impl.bag.sorted.mutable |
This package contains implementations of
MutableSortedBag . |
com.gs.collections.impl.collection | |
com.gs.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
com.gs.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
com.gs.collections.impl.list.fixed |
This package contains implementations of the
FixedSizeList interface. |
com.gs.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
com.gs.collections.impl.map.mutable |
This package contains implementations of the
MutableMap interface. |
com.gs.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
com.gs.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
com.gs.collections.impl.multimap |
This package contains implementations of the
Multimap interface. |
com.gs.collections.impl.set.mutable |
This package package contains implementations of
MutableSet . |
com.gs.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet . |
com.gs.collections.impl.set.strategy.mutable |
This package contains implementations of sets with user defined
HashingStrategy s. |
com.gs.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
Modifier and Type | Interface and Description |
---|---|
interface |
MutableBag<T>
A MutableBag is a Collection whose elements are unordered and may contain duplicate entries.
|
Modifier and Type | Interface and Description |
---|---|
interface |
MutableSortedBag<T> |
Modifier and Type | Interface and Description |
---|---|
interface |
FixedSizeCollection<T>
A FixedSizeCollection is a collection that may be mutated, but cannot grow or shrink in size.
|
Modifier and Type | Method and Description |
---|---|
MutableCollection<T> |
MutableCollection.asSynchronized()
Returns a synchronized (thread-safe) collection backed by this collection.
|
MutableCollection<T> |
MutableCollection.asUnmodifiable()
Returns an unmodifiable view of this collection.
|
<V> MutableCollection<V> |
MutableCollection.collect(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.
|
<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) |
<V> MutableCollection<V> |
MutableCollection.flatCollect(Function<? super T,? extends Iterable<V>> function) |
MutableCollection<T> |
MutableCollection.newEmpty()
Creates a new empty mutable version of the same collection type.
|
MutableCollection<T> |
MutableCollection.reject(Predicate<? super T> predicate)
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.
|
MutableCollection<T> |
MutableCollection.select(Predicate<? super T> predicate)
Returns a MutableCollection with all elements that evaluate to true for the specified predicate.
|
<S> MutableCollection<S> |
MutableCollection.selectInstancesOf(Class<S> clazz) |
<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.
|
MutableCollection<T> |
MutableCollection.with(T element)
This method allows mutable and fixed size collections the ability to add elements to their existing elements.
|
MutableCollection<T> |
FixedSizeCollection.with(T element)
This method allows fixed size collections the ability to add elements to their existing elements.
|
MutableCollection<T> |
MutableCollection.withAll(Iterable<? extends T> elements)
This method allows mutable and fixed size collections the ability to add multiple elements to their existing
elements.
|
MutableCollection<T> |
FixedSizeCollection.withAll(Iterable<? extends T> elements)
This method allows fixed size collections the ability to add multiple elements to their existing elements.
|
MutableCollection<T> |
MutableCollection.without(T element)
This method allows mutable and fixed size collections the ability to remove elements from their existing elements.
|
MutableCollection<T> |
FixedSizeCollection.without(T element)
This method allows fixed size collections the ability to remove elements from their existing elements.
|
MutableCollection<T> |
MutableCollection.withoutAll(Iterable<? extends T> elements)
This method allows mutable and fixed size collections the ability to remove multiple elements from their existing
elements.
|
MutableCollection<T> |
FixedSizeCollection.withoutAll(Iterable<? extends T> elements)
This method allows fixed size collections the ability to remove multiple elements from their existing elements.
|
<S> MutableCollection<Pair<T,S>> |
MutableCollection.zip(Iterable<S> that) |
MutableCollection<Pair<T,Integer>> |
MutableCollection.zipWithIndex() |
Modifier and Type | Method and Description |
---|---|
<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) |
Modifier and Type | Interface and Description |
---|---|
interface |
FixedSizeList<T>
A FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.
|
interface |
MutableList<T>
A MutableList is an implementation of a JCF List which provides methods matching the Smalltalk Collection protocol.
|
Modifier and Type | Method and Description |
---|---|
<R> MutableCollection<R> |
MutableMap.collect(Function<? super V,? extends R> function) |
<R> MutableCollection<R> |
MutableMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends R> function) |
<R> MutableCollection<R> |
MutableMap.flatCollect(Function<? super V,? extends Iterable<R>> function) |
MutableCollection<V> |
MutableMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableMap.select(Predicate<? super V> predicate) |
<S> MutableCollection<S> |
MutableMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<Pair<V,S>> |
MutableMap.zip(Iterable<S> that) |
MutableCollection<Pair<V,Integer>> |
MutableMap.zipWithIndex() |
Modifier and Type | Method and Description |
---|---|
<V> MutableCollection<V> |
MutableLongBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableIntBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableFloatBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableCharBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableByteBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableShortBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableObjectBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableDoubleBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableCharByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableLongByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableByteByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableIntByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableDoubleByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableObjectByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableShortByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableFloatByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableIntCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableLongCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableShortCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableDoubleCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableByteCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableCharCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableFloatCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableObjectCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableByteDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableObjectDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableShortDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableDoubleDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableIntDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableCharDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableFloatDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableLongDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableFloatFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableCharFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableObjectFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableByteFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableLongFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableDoubleFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableShortFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableIntFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V1> MutableCollection<V1> |
MutableLongObjectMap.collect(Function<? super V,? extends V1> function) |
<V1> MutableCollection<V1> |
MutableIntObjectMap.collect(Function<? super V,? extends V1> function) |
<V1> MutableCollection<V1> |
MutableCharObjectMap.collect(Function<? super V,? extends V1> function) |
<V1> MutableCollection<V1> |
MutableFloatObjectMap.collect(Function<? super V,? extends V1> function) |
<V1> MutableCollection<V1> |
MutableByteObjectMap.collect(Function<? super V,? extends V1> function) |
<V1> MutableCollection<V1> |
MutableShortObjectMap.collect(Function<? super V,? extends V1> function) |
<V1> MutableCollection<V1> |
MutableDoubleObjectMap.collect(Function<? super V,? extends V1> function) |
<VV> MutableCollection<VV> |
MutablePrimitiveObjectMap.collect(Function<? super V,? extends VV> function) |
<V> MutableCollection<V> |
MutableObjectIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableFloatIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableByteIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableShortIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableLongIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableDoubleIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableIntIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableCharIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableCharLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableLongLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableShortLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableDoubleLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableFloatLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableByteLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableObjectLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableIntLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableDoubleShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableFloatShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableShortShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableCharShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableByteShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableLongShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableObjectShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableIntShortMap.collect(ShortToObjectFunction<? extends V> function) |
<VV> MutableCollection<VV> |
MutablePrimitiveObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<P,VV> MutableCollection<VV> |
MutableLongObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
MutablePrimitiveObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
MutableIntObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
MutableCharObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
MutableFloatObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
MutableByteObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
MutableShortObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
MutableDoubleObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
MutableCollection<V> |
MutableLongObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
MutablePrimitiveObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableIntObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableCharObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableFloatObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableByteObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableShortObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableDoubleObjectMap.reject(Predicate<? super V> predicate) |
<P> MutableCollection<V> |
MutablePrimitiveObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
MutableCollection<V> |
MutableLongObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
MutablePrimitiveObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableIntObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableCharObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableFloatObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableByteObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableShortObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
MutableDoubleObjectMap.select(Predicate<? super V> predicate) |
<S> MutableCollection<S> |
MutablePrimitiveObjectMap.selectInstancesOf(Class<S> clazz) |
<P> MutableCollection<V> |
MutablePrimitiveObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<S> MutableCollection<Pair<V,S>> |
MutablePrimitiveObjectMap.zip(Iterable<S> that) |
MutableCollection<Pair<V,Integer>> |
MutablePrimitiveObjectMap.zipWithIndex() |
Modifier and Type | Method and Description |
---|---|
MutableCollection<V> |
MutableSortedMap.values() |
Modifier and Type | Method and Description |
---|---|
MutableCollection<V> |
MutableMultimap.get(K key) |
Modifier and Type | Method and Description |
---|---|
MutableCollection<T> |
PartitionMutableCollection.getRejected() |
MutableCollection<T> |
PartitionMutableCollection.getSelected() |
Modifier and Type | Interface and Description |
---|---|
interface |
FixedSizeSet<T>
A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size.
|
interface |
MutableSet<T>
A MutableSet is an implementation of a JCF Set which provides methods matching the Smalltalk Collection protocol.
|
Modifier and Type | Interface and Description |
---|---|
interface |
MutableSortedSet<T>
A MutableSortedSet is an implementation of a JCF SortedSet which provides methods matching the Smalltalk Collection
protocol.
|
Modifier and Type | Class and Description |
---|---|
class |
HashBag<T>
A HashBag is a MutableBag which uses a Map as its underlying data store.
|
class |
MultiReaderHashBag<T>
MultiReaderHashBag provides a thread-safe wrapper around a HashBag, using a ReentrantReadWriteLock.
|
class |
SynchronizedBag<T>
A synchronized view of a
MutableBag . |
class |
UnmodifiableBag<T>
An unmodifiable view of a bag.
|
Modifier and Type | Class and Description |
---|---|
class |
TreeBag<T>
A TreeBag is a MutableSortedBag which uses a SortedMap as its underlying data store.
|
class |
UnmodifiableSortedBag<T>
An unmodifiable view of a SortedBag.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractMutableBag<T> |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCollectionAdapter<T> |
class |
AbstractMultiReaderMutableCollection<T>
AbstractMultiReaderMutableCollection is a common abstraction that provides thread-safe collection behaviors.
|
class |
AbstractMutableCollection<T> |
class |
AbstractSynchronizedMutableCollection<T> |
class |
AbstractUnmodifiableMutableCollection<T> |
class |
CollectionAdapter<T>
This class provides a MutableCollection interface wrapper around a JDK Collections Collection interface instance.
|
class |
SynchronizedMutableCollection<T>
A synchronized view of a
MutableCollection . |
class |
UnmodifiableMutableCollection<T>
An unmodifiable view of a collection.
|
Modifier and Type | Method and Description |
---|---|
static <E> MutableCollection<E> |
CollectionAdapter.adapt(Collection<E> collection) |
MutableCollection<T> |
AbstractSynchronizedMutableCollection.asSynchronized() |
MutableCollection<T> |
CollectionAdapter.asSynchronized() |
MutableCollection<T> |
AbstractUnmodifiableMutableCollection.asSynchronized() |
MutableCollection<T> |
AbstractSynchronizedMutableCollection.asUnmodifiable() |
MutableCollection<T> |
CollectionAdapter.asUnmodifiable() |
MutableCollection<T> |
AbstractUnmodifiableMutableCollection.asUnmodifiable() |
<V> MutableCollection<V> |
AbstractSynchronizedMutableCollection.collect(Function<? super T,? extends V> function) |
<V> MutableCollection<V> |
AbstractCollectionAdapter.collect(Function<? super T,? extends V> function) |
<V> MutableCollection<V> |
AbstractUnmodifiableMutableCollection.collect(Function<? super T,? extends V> function) |
<V> MutableCollection<V> |
AbstractSynchronizedMutableCollection.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<V> MutableCollection<V> |
AbstractCollectionAdapter.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,A> MutableCollection<A> |
AbstractSynchronizedMutableCollection.collectWith(Function2<? super T,? super P,? extends A> function,
P parameter) |
<P,A> MutableCollection<A> |
AbstractUnmodifiableMutableCollection.collectWith(Function2<? super T,? super P,? extends A> function,
P parameter) |
<P,V> MutableCollection<V> |
AbstractCollectionAdapter.collectWith(Function2<? super T,? super P,? extends V> function,
P parameter) |
<V> MutableCollection<V> |
AbstractSynchronizedMutableCollection.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableCollection<V> |
AbstractCollectionAdapter.flatCollect(Function<? super T,? extends Iterable<V>> function) |
<V> MutableCollection<V> |
AbstractUnmodifiableMutableCollection.flatCollect(Function<? super T,? extends Iterable<V>> function) |
MutableCollection<T> |
AbstractSynchronizedMutableCollection.newEmpty() |
MutableCollection<T> |
CollectionAdapter.newEmpty()
Deprecated.
use
FastList.newList() or UnifiedSet.newSet() instead |
MutableCollection<T> |
AbstractUnmodifiableMutableCollection.newEmpty() |
MutableCollection<T> |
AbstractSynchronizedMutableCollection.reject(Predicate<? super T> predicate) |
MutableCollection<T> |
AbstractCollectionAdapter.reject(Predicate<? super T> predicate) |
MutableCollection<T> |
AbstractUnmodifiableMutableCollection.reject(Predicate<? super T> predicate) |
<P> MutableCollection<T> |
AbstractSynchronizedMutableCollection.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableCollection<T> |
AbstractCollectionAdapter.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableCollection<T> |
AbstractUnmodifiableMutableCollection.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
MutableCollection<T> |
AbstractSynchronizedMutableCollection.select(Predicate<? super T> predicate) |
MutableCollection<T> |
AbstractCollectionAdapter.select(Predicate<? super T> predicate) |
MutableCollection<T> |
AbstractUnmodifiableMutableCollection.select(Predicate<? super T> predicate) |
<S> MutableCollection<S> |
AbstractSynchronizedMutableCollection.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
AbstractCollectionAdapter.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
AbstractUnmodifiableMutableCollection.selectInstancesOf(Class<S> clazz) |
<P> MutableCollection<T> |
AbstractSynchronizedMutableCollection.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableCollection<T> |
AbstractCollectionAdapter.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> MutableCollection<T> |
AbstractUnmodifiableMutableCollection.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
MutableCollection<T> |
AbstractSynchronizedMutableCollection.with(T element) |
MutableCollection<T> |
AbstractUnmodifiableMutableCollection.with(T element) |
MutableCollection<T> |
AbstractSynchronizedMutableCollection.withAll(Iterable<? extends T> elements) |
MutableCollection<T> |
AbstractUnmodifiableMutableCollection.withAll(Iterable<? extends T> elements) |
MutableCollection<T> |
AbstractSynchronizedMutableCollection.without(T element) |
MutableCollection<T> |
AbstractUnmodifiableMutableCollection.without(T element) |
MutableCollection<T> |
AbstractSynchronizedMutableCollection.withoutAll(Iterable<? extends T> elements) |
MutableCollection<T> |
AbstractUnmodifiableMutableCollection.withoutAll(Iterable<? extends T> elements) |
<S> MutableCollection<Pair<T,S>> |
AbstractSynchronizedMutableCollection.zip(Iterable<S> that) |
<S> MutableCollection<Pair<T,S>> |
AbstractCollectionAdapter.zip(Iterable<S> that) |
<S> MutableCollection<Pair<T,S>> |
AbstractUnmodifiableMutableCollection.zip(Iterable<S> that) |
MutableCollection<Pair<T,Integer>> |
AbstractSynchronizedMutableCollection.zipWithIndex() |
MutableCollection<Pair<T,Integer>> |
AbstractCollectionAdapter.zipWithIndex() |
MutableCollection<Pair<T,Integer>> |
AbstractUnmodifiableMutableCollection.zipWithIndex() |
Constructor and Description |
---|
SynchronizedCollectionSerializationProxy(MutableCollection<T> collection) |
UnmodifiableCollectionSerializationProxy(MutableCollection<T> collection) |
Modifier and Type | Method and Description |
---|---|
<V> MutableCollection<V> |
AbstractUnmodifiableBooleanCollection.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractSynchronizedBooleanCollection.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractSynchronizedByteCollection.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractUnmodifiableByteCollection.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractUnmodifiableCharCollection.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractSynchronizedCharCollection.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractUnmodifiableDoubleCollection.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractSynchronizedDoubleCollection.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractSynchronizedFloatCollection.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractUnmodifiableFloatCollection.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractSynchronizedIntCollection.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractUnmodifiableIntCollection.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractUnmodifiableLongCollection.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractSynchronizedLongCollection.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractUnmodifiableShortCollection.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
AbstractSynchronizedShortCollection.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractArrayAdapter<T> |
class |
AbstractMemoryEfficientMutableList<T> |
class |
ArrayAdapter<T>
This class provides a MutableList wrapper around an array.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractListAdapter<T> |
class |
AbstractMutableList<T> |
class |
ArrayListAdapter<T>
This class provides a MutableList wrapper around a JDK Collections ArrayList instance.
|
class |
CompositeFastList<E>
CompositeFastList behaves like a list, but is composed of at least one list.
|
class |
FastList<T>
FastList is an attempt to provide the same functionality as ArrayList without the support for concurrent
modification exceptions.
|
class |
ListAdapter<T>
This class provides a MutableList wrapper around a JDK Collections List interface instance.
|
class |
MultiReaderFastList<T>
MultiReadFastList provides a thread-safe wrapper around a FastList, using a ReentrantReadWriteLock.
|
class |
RandomAccessListAdapter<T>
This class provides a MutableList wrapper around a JDK Collections List interface instance.
|
class |
SynchronizedMutableList<T>
A synchronized view of a
MutableList . |
class |
UnmodifiableMutableList<T>
An unmodifiable view of a list.
|
Modifier and Type | Method and Description |
---|---|
<A> MutableCollection<A> |
SynchronizedMutableMap.collect(Function<? super V,? extends A> function) |
<R> MutableCollection<R> |
UnmodifiableMutableMap.collect(Function<? super V,? extends R> function) |
<A> MutableCollection<A> |
SynchronizedMutableMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends A> function) |
<R> MutableCollection<R> |
UnmodifiableMutableMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends R> function) |
<A> MutableCollection<A> |
SynchronizedMutableMap.flatCollect(Function<? super V,? extends Iterable<A>> function) |
<R> MutableCollection<R> |
UnmodifiableMutableMap.flatCollect(Function<? super V,? extends Iterable<R>> function) |
MutableCollection<V> |
UnmodifiableMutableMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedMutableMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableMutableMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedMutableMap.select(Predicate<? super V> predicate) |
<S> MutableCollection<S> |
UnmodifiableMutableMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
SynchronizedMutableMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<Pair<V,S>> |
UnmodifiableMutableMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
SynchronizedMutableMap.zip(Iterable<S> that) |
MutableCollection<Pair<V,Integer>> |
UnmodifiableMutableMap.zipWithIndex() |
MutableCollection<Pair<V,Integer>> |
SynchronizedMutableMap.zipWithIndex() |
Modifier and Type | Method and Description |
---|---|
<V> MutableCollection<V> |
SynchronizedCharBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableShortBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableDoubleBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableByteBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableIntBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ShortBooleanHashMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
FloatBooleanHashMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedDoubleBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedFloatBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableFloatBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableCharBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
CharBooleanHashMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedLongBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
IntBooleanHashMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ObjectBooleanHashMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ByteBooleanHashMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedShortBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
DoubleBooleanHashMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedByteBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
LongBooleanHashMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableLongBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedIntBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V1> MutableCollection<V1> |
UnmodifiableObjectBooleanMap.collect(BooleanToObjectFunction<? extends V1> function) |
<V1> MutableCollection<V1> |
SynchronizedObjectBooleanMap.collect(BooleanToObjectFunction<? extends V1> function) |
<V> MutableCollection<V> |
IntByteHashMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableIntByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ByteByteHashMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableFloatByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableByteByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ObjectByteHashMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ShortByteHashMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
CharByteHashMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedLongByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableShortByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedCharByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableDoubleByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
LongByteHashMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
FloatByteHashMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedShortByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableLongByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedDoubleByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedIntByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedByteByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
DoubleByteHashMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableCharByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedFloatByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V1> MutableCollection<V1> |
UnmodifiableObjectByteMap.collect(ByteToObjectFunction<? extends V1> function) |
<V1> MutableCollection<V1> |
SynchronizedObjectByteMap.collect(ByteToObjectFunction<? extends V1> function) |
<V> MutableCollection<V> |
UnmodifiableShortCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedCharCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ShortCharHashMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedFloatCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedLongCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedIntCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableIntCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableCharCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
LongCharHashMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedByteCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedDoubleCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ByteCharHashMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
FloatCharHashMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableFloatCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
CharCharHashMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedShortCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableLongCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableByteCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
DoubleCharHashMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableDoubleCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
IntCharHashMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ObjectCharHashMap.collect(CharToObjectFunction<? extends V> function) |
<V1> MutableCollection<V1> |
UnmodifiableObjectCharMap.collect(CharToObjectFunction<? extends V1> function) |
<V1> MutableCollection<V1> |
SynchronizedObjectCharMap.collect(CharToObjectFunction<? extends V1> function) |
<V> MutableCollection<V> |
SynchronizedIntDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
CharDoubleHashMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableDoubleDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
FloatDoubleHashMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ObjectDoubleHashMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedShortDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedDoubleDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ShortDoubleHashMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
LongDoubleHashMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedLongDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableByteDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableFloatDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ByteDoubleHashMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableShortDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedFloatDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableLongDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
DoubleDoubleHashMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableIntDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedCharDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
IntDoubleHashMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableCharDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedByteDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V1> MutableCollection<V1> |
SynchronizedObjectDoubleMap.collect(DoubleToObjectFunction<? extends V1> function) |
<V1> MutableCollection<V1> |
UnmodifiableObjectDoubleMap.collect(DoubleToObjectFunction<? extends V1> function) |
<V> MutableCollection<V> |
IntFloatHashMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedDoubleFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableDoubleFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableShortFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ShortFloatHashMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
CharFloatHashMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedLongFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
DoubleFloatHashMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedFloatFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableLongFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableCharFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
LongFloatHashMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedByteFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedShortFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedIntFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableByteFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableFloatFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ObjectFloatHashMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ByteFloatHashMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableIntFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedCharFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
FloatFloatHashMap.collect(FloatToObjectFunction<? extends V> function) |
<V1> MutableCollection<V1> |
SynchronizedObjectFloatMap.collect(FloatToObjectFunction<? extends V1> function) |
<V1> MutableCollection<V1> |
UnmodifiableObjectFloatMap.collect(FloatToObjectFunction<? extends V1> function) |
<VV> MutableCollection<VV> |
UnmodifiableByteObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
UnmodifiableCharObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
UnmodifiableShortObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedCharObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
UnmodifiableLongObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
UnmodifiableDoubleObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
LongObjectHashMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
FloatObjectHashMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
UnmodifiableFloatObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
IntObjectHashMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedFloatObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedDoubleObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
UnmodifiableIntObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
ShortObjectHashMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedLongObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
DoubleObjectHashMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedShortObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
CharObjectHashMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedByteObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedIntObjectMap.collect(Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
ByteObjectHashMap.collect(Function<? super V,? extends VV> function) |
<V> MutableCollection<V> |
CharIntHashMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableByteIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableCharIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ObjectIntHashMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedDoubleIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableLongIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedIntIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableDoubleIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedByteIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedCharIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableIntIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ByteIntHashMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
DoubleIntHashMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableShortIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
IntIntHashMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
LongIntHashMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedFloatIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
FloatIntHashMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedLongIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ShortIntHashMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedShortIntMap.collect(IntToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableFloatIntMap.collect(IntToObjectFunction<? extends V> function) |
<V1> MutableCollection<V1> |
SynchronizedObjectIntMap.collect(IntToObjectFunction<? extends V1> function) |
<V1> MutableCollection<V1> |
UnmodifiableObjectIntMap.collect(IntToObjectFunction<? extends V1> function) |
<V> MutableCollection<V> |
CharLongHashMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableShortLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedShortLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ByteLongHashMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableIntLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedCharLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedByteLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableDoubleLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
LongLongHashMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedIntLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedFloatLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableLongLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
IntLongHashMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ShortLongHashMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
DoubleLongHashMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
FloatLongHashMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedDoubleLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableCharLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableFloatLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ObjectLongHashMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableByteLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedLongLongMap.collect(LongToObjectFunction<? extends V> function) |
<V1> MutableCollection<V1> |
UnmodifiableObjectLongMap.collect(LongToObjectFunction<? extends V1> function) |
<V1> MutableCollection<V1> |
SynchronizedObjectLongMap.collect(LongToObjectFunction<? extends V1> function) |
<V> MutableCollection<V> |
UnmodifiableDoubleShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
DoubleShortHashMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
IntShortHashMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedShortShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableLongShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedLongShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedByteShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableByteShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
CharShortHashMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedDoubleShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableCharShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ByteShortHashMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableShortShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableIntShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedFloatShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
LongShortHashMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
UnmodifiableFloatShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedCharShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ObjectShortHashMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
SynchronizedIntShortMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
FloatShortHashMap.collect(ShortToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
ShortShortHashMap.collect(ShortToObjectFunction<? extends V> function) |
<V1> MutableCollection<V1> |
SynchronizedObjectShortMap.collect(ShortToObjectFunction<? extends V1> function) |
<V1> MutableCollection<V1> |
UnmodifiableObjectShortMap.collect(ShortToObjectFunction<? extends V1> function) |
<VV> MutableCollection<VV> |
UnmodifiableByteObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
UnmodifiableCharObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
UnmodifiableShortObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedCharObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
UnmodifiableLongObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
UnmodifiableDoubleObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
UnmodifiableFloatObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedFloatObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedDoubleObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
UnmodifiableIntObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedLongObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedShortObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedByteObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<VV> MutableCollection<VV> |
SynchronizedIntObjectMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends VV> function) |
<P,VV> MutableCollection<VV> |
UnmodifiableByteObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
UnmodifiableCharObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
UnmodifiableShortObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
SynchronizedCharObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
UnmodifiableLongObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
UnmodifiableDoubleObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
LongObjectHashMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
FloatObjectHashMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
UnmodifiableFloatObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
IntObjectHashMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
SynchronizedFloatObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
SynchronizedDoubleObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
UnmodifiableIntObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
ShortObjectHashMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
SynchronizedLongObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
DoubleObjectHashMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
SynchronizedShortObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
CharObjectHashMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
SynchronizedByteObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
SynchronizedIntObjectMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<P,VV> MutableCollection<VV> |
ByteObjectHashMap.collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
MutableCollection<V> |
UnmodifiableByteObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableCharObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableShortObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedCharObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableLongObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableDoubleObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
LongObjectHashMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
FloatObjectHashMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableFloatObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
IntObjectHashMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedFloatObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedDoubleObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableIntObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
ShortObjectHashMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedLongObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
DoubleObjectHashMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedShortObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
CharObjectHashMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedByteObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedIntObjectMap.reject(Predicate<? super V> predicate) |
MutableCollection<V> |
ByteObjectHashMap.reject(Predicate<? super V> predicate) |
<P> MutableCollection<V> |
UnmodifiableByteObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
UnmodifiableCharObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
UnmodifiableShortObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedCharObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
UnmodifiableLongObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
UnmodifiableDoubleObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
LongObjectHashMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
FloatObjectHashMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
UnmodifiableFloatObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
IntObjectHashMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedFloatObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedDoubleObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
UnmodifiableIntObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
ShortObjectHashMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedLongObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
DoubleObjectHashMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedShortObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
CharObjectHashMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedByteObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedIntObjectMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
ByteObjectHashMap.rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
MutableCollection<V> |
UnmodifiableByteObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableCharObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableShortObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedCharObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableLongObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableDoubleObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
LongObjectHashMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
FloatObjectHashMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableFloatObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
IntObjectHashMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedFloatObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedDoubleObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
UnmodifiableIntObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
ShortObjectHashMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedLongObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
DoubleObjectHashMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedShortObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
CharObjectHashMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedByteObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
SynchronizedIntObjectMap.select(Predicate<? super V> predicate) |
MutableCollection<V> |
ByteObjectHashMap.select(Predicate<? super V> predicate) |
<S> MutableCollection<S> |
UnmodifiableByteObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
UnmodifiableCharObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
UnmodifiableShortObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
SynchronizedCharObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
UnmodifiableLongObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
UnmodifiableDoubleObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
UnmodifiableFloatObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
SynchronizedFloatObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
SynchronizedDoubleObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
UnmodifiableIntObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
SynchronizedLongObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
SynchronizedShortObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
SynchronizedByteObjectMap.selectInstancesOf(Class<S> clazz) |
<S> MutableCollection<S> |
SynchronizedIntObjectMap.selectInstancesOf(Class<S> clazz) |
<P> MutableCollection<V> |
UnmodifiableByteObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
UnmodifiableCharObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
UnmodifiableShortObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedCharObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
UnmodifiableLongObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
UnmodifiableDoubleObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
LongObjectHashMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
FloatObjectHashMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
UnmodifiableFloatObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
IntObjectHashMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedFloatObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedDoubleObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
UnmodifiableIntObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
ShortObjectHashMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedLongObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
DoubleObjectHashMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedShortObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
CharObjectHashMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedByteObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
SynchronizedIntObjectMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<P> MutableCollection<V> |
ByteObjectHashMap.selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
<S> MutableCollection<Pair<V,S>> |
UnmodifiableByteObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
UnmodifiableCharObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
UnmodifiableShortObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
SynchronizedCharObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
UnmodifiableLongObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
UnmodifiableDoubleObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
UnmodifiableFloatObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
SynchronizedFloatObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
SynchronizedDoubleObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
UnmodifiableIntObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
SynchronizedLongObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
SynchronizedShortObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
SynchronizedByteObjectMap.zip(Iterable<S> that) |
<S> MutableCollection<Pair<V,S>> |
SynchronizedIntObjectMap.zip(Iterable<S> that) |
Modifier and Type | Method and Description |
---|---|
MutableCollection<V> |
SynchronizedSortedMap.values() |
MutableCollection<V> |
UnmodifiableTreeMap.values() |
MutableCollection<V> |
SortedMapAdapter.values() |
MutableCollection<V> |
TreeSortedMap.values() |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMutableMultimap<K,V,C extends MutableCollection<V>> |
class |
AbstractSynchronizedPutMultimap<K,V,C extends MutableCollection<V>> |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMutableSet<T> |
class |
MultiReaderUnifiedSet<T>
MultiReadUnifiedSet provides a thread-safe wrapper around a UnifiedSet, using a ReentrantReadWriteLock.
|
class |
SetAdapter<T>
This class provides a MutableSet wrapper around a JDK Collections Set interface instance.
|
class |
SynchronizedMutableSet<T>
A synchronized view of a
MutableSet . |
class |
UnifiedSet<T> |
class |
UnmodifiableMutableSet<T>
An unmodifiable view of a list.
|
Modifier and Type | Class and Description |
---|---|
class |
SortedSetAdapter<T>
This class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.
|
class |
SynchronizedSortedSet<T>
A synchronized view of a
MutableSortedSet . |
class |
TreeSortedSet<T> |
class |
UnmodifiableSortedSet<T>
An unmodifiable view of a SortedSet.
|
Modifier and Type | Class and Description |
---|---|
class |
UnifiedSetWithHashingStrategy<K> |
Modifier and Type | Method and Description |
---|---|
static <T,R extends MutableCollection<T>> |
IterableIterate.dropWhile(Iterable<T> iterable,
Predicate<? super T> predicate,
R target) |
static <T,R extends MutableCollection<T>> |
IteratorIterate.dropWhile(Iterator<T> iterator,
Predicate<? super T> predicate,
R target) |
static <T,R extends MutableCollection<T>> |
IterableIterate.takeWhile(Iterable<T> iterable,
Predicate<? super T> predicate,
R target) |
static <T,R extends MutableCollection<T>> |
IteratorIterate.takeWhile(Iterator<T> iterator,
Predicate<? super T> predicate,
R target) |
Modifier and Type | Method and Description |
---|---|
static <T> RichIterable<RichIterable<T>> |
MutableCollectionIterate.chunk(MutableCollection<T> collection,
int size) |
Copyright © 2004–2017. All rights reserved.