| Package | Description |
|---|---|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.multimap.ordered | |
| org.eclipse.collections.api.ordered | |
| org.eclipse.collections.api.partition.ordered | |
| org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableSortedBag<T>
ImmutableSortedBag is the non-modifiable equivalent interface to
MutableSortedBag. |
interface |
MutableSortedBag<T> |
interface |
SortedBag<T>
An Iterable whose elements are sorted by some comparator or their natural ordering and may contain duplicate entries.
|
| Modifier and Type | Method and Description |
|---|---|
SortedIterable<V> |
SortedIterableMultimap.get(K key) |
| Modifier and Type | Method and Description |
|---|---|
SortedIterable<T> |
SortedIterable.distinct()
Returns a new
SortedIterable containing the distinct elements in this iterable. |
SortedIterable<T> |
SortedIterable.dropWhile(Predicate<? super T> predicate)
Returns the final elements that do not satisfy the Predicate.
|
SortedIterable<T> |
SortedIterable.reject(Predicate<? super T> predicate) |
<P> SortedIterable<T> |
SortedIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
SortedIterable<T> |
SortedIterable.select(Predicate<? super T> predicate) |
<S> SortedIterable<S> |
SortedIterable.selectInstancesOf(Class<S> clazz) |
<P> SortedIterable<T> |
SortedIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
SortedIterable<T> |
SortedIterable.takeWhile(Predicate<? super T> predicate)
Returns the initial elements that satisfy the Predicate.
|
SortedIterable<T> |
SortedIterable.tap(Procedure<? super T> procedure) |
SortedIterable<Pair<T,Integer>> |
SortedIterable.zipWithIndex() |
| Modifier and Type | Method and Description |
|---|---|
SortedIterable<T> |
PartitionSortedIterable.getRejected() |
SortedIterable<T> |
PartitionSortedIterable.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.
|
interface |
SortedSetIterable<T>
An iterable whose items are unique and sorted by some comparator or their natural ordering.
|
Copyright © 2004–2017. All rights reserved.