Package | Description |
---|---|
org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
org.eclipse.collections.api.multimap.set |
This package contains interfaces for
SetMultimap . |
org.eclipse.collections.api.partition.set |
This package contains interfaces for
PartitionSet . |
org.eclipse.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set . |
org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
org.eclipse.collections.impl.set | |
org.eclipse.collections.impl.set.mutable |
This package package contains implementations of
MutableSet . |
org.eclipse.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet . |
org.eclipse.collections.impl.set.strategy.mutable |
This package contains implementations of sets with user defined
HashingStrategy s. |
Modifier and Type | Method and Description |
---|---|
MutableSetIterable<Pair<T,Integer>> |
MutableBagIterable.zipWithIndex() |
Modifier and Type | Method and Description |
---|---|
MutableSetIterable<V> |
MutableSetIterableMultimap.get(K key) |
MutableSetIterable<V> |
MutableSetIterableMultimap.removeAll(Object key) |
MutableSetIterable<V> |
MutableSetIterableMultimap.replaceValues(K key,
Iterable<? extends V> values) |
Modifier and Type | Method and Description |
---|---|
MutableSetIterable<T> |
PartitionMutableSetIterable.getRejected() |
MutableSetIterable<T> |
PartitionMutableSetIterable.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 | Method and Description |
---|---|
MutableSetIterable<T> |
MutableSetIterable.reject(Predicate<? super T> predicate) |
<P> MutableSetIterable<T> |
MutableSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
MutableSetIterable<T> |
MutableSetIterable.select(Predicate<? super T> predicate) |
<S> MutableSetIterable<S> |
MutableSetIterable.selectInstancesOf(Class<S> clazz) |
<P> MutableSetIterable<T> |
MutableSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
MutableSetIterable<T> |
MutableSetIterable.tap(Procedure<? super T> procedure) |
MutableSetIterable<Pair<T,Integer>> |
MutableSetIterable.zipWithIndex()
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
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 |
AbstractUnifiedSet<T> |
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<T> |
Copyright © 2004–2016. All rights reserved.