Uses of Interface
org.eclipse.collections.api.ordered.SortedIterable
-
Packages that use SortedIterable 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.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
. -
-
Uses of SortedIterable in org.eclipse.collections.api.bag.sorted
Subinterfaces of SortedIterable in org.eclipse.collections.api.bag.sorted Modifier and Type Interface Description interface
ImmutableSortedBag<T>
ImmutableSortedBag is the non-modifiable equivalent interface toMutableSortedBag
.interface
MutableSortedBag<T>
interface
SortedBag<T>
An Iterable whose elements are sorted by some comparator or their natural ordering and may contain duplicate entries. -
Uses of SortedIterable in org.eclipse.collections.api.multimap.ordered
Methods in org.eclipse.collections.api.multimap.ordered that return SortedIterable Modifier and Type Method Description SortedIterable<V>
SortedIterableMultimap. get(K key)
-
Uses of SortedIterable in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered that return SortedIterable Modifier and Type Method Description SortedIterable<T>
SortedIterable. distinct()
Returns a newSortedIterable
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(java.lang.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,java.lang.Integer>>
SortedIterable. zipWithIndex()
-
Uses of SortedIterable in org.eclipse.collections.api.partition.ordered
Methods in org.eclipse.collections.api.partition.ordered that return SortedIterable Modifier and Type Method Description SortedIterable<T>
PartitionSortedIterable. getRejected()
SortedIterable<T>
PartitionSortedIterable. getSelected()
-
Uses of SortedIterable in org.eclipse.collections.api.set.sorted
Subinterfaces of SortedIterable in org.eclipse.collections.api.set.sorted Modifier and Type Interface Description interface
ImmutableSortedSet<T>
ImmutableSortedSet is the non-modifiable equivalent interface toMutableSortedSet
.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. -
Uses of SortedIterable in org.eclipse.collections.impl.bag.sorted.immutable
Classes in org.eclipse.collections.impl.bag.sorted.immutable that implement SortedIterable Modifier and Type Class Description (package private) class
AbstractImmutableSortedBag<T>
(package private) class
ImmutableEmptySortedBag<T>
(package private) class
ImmutableSortedBagImpl<T>
-
Uses of SortedIterable in org.eclipse.collections.impl.bag.sorted.mutable
Classes in org.eclipse.collections.impl.bag.sorted.mutable that implement SortedIterable Modifier and Type Class Description class
AbstractMutableSortedBag<T>
class
SynchronizedSortedBag<T>
A synchronized view of aMutableSortedBag
.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. -
Uses of SortedIterable in org.eclipse.collections.impl.set.sorted.immutable
Classes in org.eclipse.collections.impl.set.sorted.immutable that implement SortedIterable Modifier and Type Class Description (package private) class
AbstractImmutableSortedSet<T>
This class is the parent class for all ImmutableSortedSets.(package private) class
ImmutableEmptySortedSet<T>
This is a zero elementImmutableSortedSet
which is created by calling the SortedSets.immutable.empty() method.(package private) class
ImmutableTreeSet<T>
-
Uses of SortedIterable in org.eclipse.collections.impl.set.sorted.mutable
Classes in org.eclipse.collections.impl.set.sorted.mutable that implement SortedIterable 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 aMutableSortedSet
.class
TreeSortedSet<T>
class
UnmodifiableSortedSet<T>
An unmodifiable view of a SortedSet.
-