| 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.
|
| org.eclipse.collections.impl.block.factory |
This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure. |
| org.eclipse.collections.impl.lazy.parallel.set.sorted | |
| org.eclipse.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet. |
| org.eclipse.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
| Modifier and Type | Method | Description |
|---|---|---|
SortedSetIterable<T> |
SortedBag.distinct() |
|
SortedSetIterable<Pair<T,Integer>> |
SortedBag.zipWithIndex() |
| Modifier and Type | Method | Description |
|---|---|---|
SortedSetIterable<V> |
SortedSetMultimap.get(K key) |
| Modifier and Type | Method | Description |
|---|---|---|
SortedSetIterable<T> |
PartitionSortedSet.getRejected() |
|
SortedSetIterable<T> |
PartitionSortedSet.getSelected() |
| Modifier and Type | Interface | 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 | 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 | Description |
|---|---|---|
ImmutableSortedSet<SortedSetIterable<T>> |
ImmutableSortedSet.powerSet() |
|
MutableSortedSet<SortedSetIterable<T>> |
MutableSortedSet.powerSet() |
|
SortedSetIterable<SortedSetIterable<T>> |
SortedSetIterable.powerSet() |
Returns the set whose members are all possible subsets of
this. |
| Modifier and Type | Method | Description |
|---|---|---|
static <T> SerializableComparator<SortedSetIterable<T>> |
Comparators.powerSet() |
| Constructor | Description |
|---|---|
NonParallelSortedSetIterable(SortedSetIterable<T> delegate) |
| Modifier and Type | Class | 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 | Method | Description |
|---|---|---|
MutableSortedSet<SortedSetIterable<T>> |
SortedSetAdapter.powerSet() |
|
MutableSortedSet<SortedSetIterable<T>> |
SynchronizedSortedSet.powerSet() |
|
MutableSortedSet<SortedSetIterable<T>> |
TreeSortedSet.powerSet() |
|
MutableSortedSet<SortedSetIterable<T>> |
UnmodifiableSortedSet.powerSet() |
| Modifier and Type | Method | Description |
|---|---|---|
int |
SortedSetAdapter.compareTo(SortedSetIterable<T> o) |
|
int |
SynchronizedSortedSet.compareTo(SortedSetIterable<T> o) |
|
int |
TreeSortedSet.compareTo(SortedSetIterable<T> otherSet) |
|
int |
UnmodifiableSortedSet.compareTo(SortedSetIterable<T> o) |
| Modifier and Type | Method | Description |
|---|---|---|
static <T> int |
SortedSetIterables.compare(SortedSetIterable<T> setA,
SortedSetIterable<T> setB) |
Copyright © 2004–2017. All rights reserved.