| 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.
|
| Modifier and Type | Method and Description |
|---|---|
MutableSetIterable<T> |
MutableBagIterable.selectUnique() |
MutableSetIterable<Pair<T,Integer>> |
MutableBagIterable.zipWithIndex() |
| Modifier and Type | Method and Description |
|---|---|
MutableSetIterable<V> |
MutableSetIterableMultimap.get(K key) |
MutableSetIterable<V> |
MutableSetIterableMultimap.getIfAbsentPutAll(K key,
Iterable<? extends V> values) |
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 |
MultiReaderSet<T>
A MultiReaderSet provides thread-safe iteration for a set through methods
withReadLockAndDelegate() and withWriteLockAndDelegate(). |
interface |
MutableSet<T>
A MutableSet is an extension java.util.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) |
default MutableSetIterable<T> |
MutableSetIterable.with(T element) |
default MutableSetIterable<T> |
MutableSetIterable.withAll(Iterable<? extends T> elements) |
default MutableSetIterable<T> |
MutableSetIterable.without(T element) |
default MutableSetIterable<T> |
MutableSetIterable.withoutAll(Iterable<? extends T> elements) |
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.
|
Copyright © 2004–2020. All rights reserved.