| Package | Description |
|---|---|
| org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.bimap |
This package contains interfaces for BiMap API.
|
| org.eclipse.collections.api.multimap.bag |
This package contains interfaces for
BagMultimap. |
| org.eclipse.collections.api.partition.bag |
This package contains interfaces for
PartitionBag. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableBag<T> |
| Modifier and Type | Method and Description |
|---|---|
ImmutableBagIterable<T> |
ImmutableBagIterable.reject(Predicate<? super T> predicate) |
<P> ImmutableBagIterable<T> |
ImmutableBagIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
ImmutableBagIterable<T> |
ImmutableBagIterable.select(Predicate<? super T> predicate) |
ImmutableBagIterable<T> |
ImmutableBagIterable.selectByOccurrences(IntPredicate predicate) |
default ImmutableBagIterable<T> |
ImmutableBagIterable.selectDuplicates() |
<S> ImmutableBagIterable<S> |
ImmutableBagIterable.selectInstancesOf(Class<S> clazz) |
<P> ImmutableBagIterable<T> |
ImmutableBagIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
ImmutableBagIterable<T> |
ImmutableBagIterable.tap(Procedure<? super T> procedure) |
ImmutableBagIterable<T> |
Bag.toImmutable() |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableSortedBag<T>
ImmutableSortedBag is the non-modifiable equivalent interface to
MutableSortedBag. |
| Modifier and Type | Method and Description |
|---|---|
<V1> ImmutableBagIterable<V1> |
ImmutableBiMap.collect(Function<? super V,? extends V1> function) |
<V1> ImmutableBagIterable<V1> |
ImmutableBiMap.collectIf(Predicate<? super V> predicate,
Function<? super V,? extends V1> function) |
<P,V1> ImmutableBagIterable<V1> |
ImmutableBiMap.collectWith(Function2<? super V,? super P,? extends V1> function,
P parameter) |
<V1> ImmutableBagIterable<V1> |
ImmutableBiMap.flatCollect(Function<? super V,? extends Iterable<V1>> function) |
default <P,V1> ImmutableBagIterable<V1> |
ImmutableBiMap.flatCollectWith(Function2<? super V,? super P,? extends Iterable<V1>> function,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableBagIterable<V> |
ImmutableBagIterableMultimap.get(K key) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableBagIterable<T> |
PartitionImmutableBagIterable.getRejected() |
ImmutableBagIterable<T> |
PartitionImmutableBagIterable.getSelected() |
Copyright © 2004–2023. All rights reserved.