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.
|
org.eclipse.collections.impl.bag.sorted.mutable |
This package contains implementations of
MutableSortedBag . |
org.eclipse.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet . |
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.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractMutableSortedBag<T> |
class |
SynchronizedSortedBag<T>
A synchronized view of a
MutableSortedBag . |
class |
TreeBag<T>
A TreeBag is a MutableSortedBag which uses a SortedMap as its underlying data store.
|
class |
UnmodifiableSortedBag<T>
An unmodifiable view of a SortedBag.
|
Modifier and Type | Class and 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.
|
Copyright © 2004–2016. All rights reserved.