| Package | Description |
|---|---|
| org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| org.eclipse.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.
|
| 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. |
| Modifier and Type | Method and Description |
|---|---|
UnsortedSetIterable<T> |
UnsortedBag.selectUnique() |
UnsortedSetIterable<Pair<T,Integer>> |
UnsortedBag.zipWithIndex()
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
| Modifier and Type | Method and Description |
|---|---|
UnsortedSetIterable<Pair<V,Integer>> |
UnsortedMapIterable.zipWithIndex()
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
| Modifier and Type | Method and Description |
|---|---|
UnsortedSetIterable<Pair<V,Integer>> |
PrimitiveObjectMap.zipWithIndex()
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
| Modifier and Type | Method and Description |
|---|---|
UnsortedSetIterable<V> |
UnsortedSetMultimap.get(K key) |
| Modifier and Type | Method and Description |
|---|---|
UnsortedSetIterable<T> |
PartitionUnsortedSet.getRejected() |
UnsortedSetIterable<T> |
PartitionUnsortedSet.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 |
ImmutableSet<T>
ImmutableSet is the non-modifiable equivalent interface to
MutableSet. |
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 |
|---|---|
<V> UnsortedSetIterable<V> |
UnsortedSetIterable.collect(Function<? super T,? extends V> function) |
<V> UnsortedSetIterable<V> |
UnsortedSetIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<P,V> UnsortedSetIterable<V> |
UnsortedSetIterable.collectWith(Function2<? super T,? super P,? extends V> function,
P parameter) |
UnsortedSetIterable<T> |
UnsortedSetIterable.difference(SetIterable<? extends T> subtrahendSet) |
<V> UnsortedSetIterable<V> |
UnsortedSetIterable.flatCollect(Function<? super T,? extends Iterable<V>> function) |
default <P,V> UnsortedSetIterable<V> |
UnsortedSetIterable.flatCollectWith(Function2<? super T,? super P,? extends Iterable<V>> function,
P parameter) |
UnsortedSetIterable<T> |
UnsortedSetIterable.intersect(SetIterable<? extends T> set) |
UnsortedSetIterable<UnsortedSetIterable<T>> |
UnsortedSetIterable.powerSet()
Returns the set whose members are all possible subsets of
this. |
UnsortedSetIterable<T> |
UnsortedSetIterable.reject(Predicate<? super T> predicate) |
<P> UnsortedSetIterable<T> |
UnsortedSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
UnsortedSetIterable<T> |
UnsortedSetIterable.select(Predicate<? super T> predicate) |
<S> UnsortedSetIterable<S> |
UnsortedSetIterable.selectInstancesOf(Class<S> clazz) |
<P> UnsortedSetIterable<T> |
UnsortedSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
UnsortedSetIterable<T> |
UnsortedSetIterable.symmetricDifference(SetIterable<? extends T> setB) |
UnsortedSetIterable<T> |
UnsortedSetIterable.tap(Procedure<? super T> procedure) |
UnsortedSetIterable<T> |
UnsortedSetIterable.union(SetIterable<? extends T> set) |
<S> UnsortedSetIterable<Pair<T,S>> |
UnsortedSetIterable.zip(Iterable<S> that)
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
UnsortedSetIterable<Pair<T,Integer>> |
UnsortedSetIterable.zipWithIndex()
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
| Modifier and Type | Method and Description |
|---|---|
UnsortedSetIterable<UnsortedSetIterable<T>> |
UnsortedSetIterable.powerSet()
Returns the set whose members are all possible subsets of
this. |
MutableSet<UnsortedSetIterable<T>> |
MutableSet.powerSet() |
ImmutableSet<UnsortedSetIterable<T>> |
ImmutableSet.powerSet() |
Copyright © 2004–2023. All rights reserved.