| Package | Description |
|---|---|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.multimap.sortedset |
This package contains interfaces for
SortedSetMultimap. |
| org.eclipse.collections.api.partition.set.sorted |
This package contains interfaces for
PartitionSortedSet. |
| org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
| Modifier and Type | Method and Description |
|---|---|
SortedSetIterable<T> |
SortedBag.distinct() |
SortedSetIterable<T> |
SortedBag.selectUnique() |
SortedSetIterable<Pair<T,Integer>> |
SortedBag.zipWithIndex() |
| Modifier and Type | Method and Description |
|---|---|
SortedSetIterable<V> |
SortedSetMultimap.get(K key) |
| Modifier and Type | Method and Description |
|---|---|
SortedSetIterable<T> |
PartitionSortedSet.getRejected() |
SortedSetIterable<T> |
PartitionSortedSet.getSelected() |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableSortedSet<T>
ImmutableSortedSet is the non-modifiable equivalent interface to
MutableSortedSet. |
interface |
MutableSortedSet<T>
A MutableSortedSet is an implementation of a JCF SortedSet which provides methods matching the Smalltalk Collection
protocol.
|
| Modifier and Type | Method and Description |
|---|---|
SortedSetIterable<T> |
SortedSetIterable.difference(SetIterable<? extends T> subtrahendSet)
Returns the set of all members of
this that are not members of subtrahendSet. |
SortedSetIterable<T> |
SortedSetIterable.distinct() |
SortedSetIterable<T> |
SortedSetIterable.drop(int count) |
SortedSetIterable<T> |
SortedSetIterable.dropWhile(Predicate<? super T> predicate) |
SortedSetIterable<T> |
SortedSetIterable.intersect(SetIterable<? extends T> set)
Returns the set of all objects that are members of both
this and set. |
SortedSetIterable<SortedSetIterable<T>> |
SortedSetIterable.powerSet()
Returns the set whose members are all possible subsets of
this. |
SortedSetIterable<T> |
SortedSetIterable.reject(Predicate<? super T> predicate) |
<P> SortedSetIterable<T> |
SortedSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
SortedSetIterable<T> |
SortedSetIterable.select(Predicate<? super T> predicate) |
<S> SortedSetIterable<S> |
SortedSetIterable.selectInstancesOf(Class<S> clazz) |
<P> SortedSetIterable<T> |
SortedSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
SortedSetIterable<T> |
SortedSetIterable.symmetricDifference(SetIterable<? extends T> setB)
Returns the set of all objects that are a member of exactly one of
this and setB (elements which
are in one of the sets, but not in both). |
SortedSetIterable<T> |
SortedSetIterable.take(int count) |
SortedSetIterable<T> |
SortedSetIterable.takeWhile(Predicate<? super T> predicate) |
SortedSetIterable<T> |
SortedSetIterable.tap(Procedure<? super T> procedure) |
SortedSetIterable<T> |
SortedSetIterable.toReversed() |
SortedSetIterable<T> |
SortedSetIterable.union(SetIterable<? extends T> set)
Returns the set of all objects that are a member of
this or set or both. |
SortedSetIterable<Pair<T,Integer>> |
SortedSetIterable.zipWithIndex() |
| Modifier and Type | Method and Description |
|---|---|
SortedSetIterable<SortedSetIterable<T>> |
SortedSetIterable.powerSet()
Returns the set whose members are all possible subsets of
this. |
MutableSortedSet<SortedSetIterable<T>> |
MutableSortedSet.powerSet() |
ImmutableSortedSet<SortedSetIterable<T>> |
ImmutableSortedSet.powerSet() |
Copyright © 2004–2020. All rights reserved.