Uses of Interface
org.eclipse.collections.api.set.sorted.SortedSetIterable
-
-
Uses of SortedSetIterable in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return SortedSetIterable Modifier and Type Method Description SortedSetIterable<T>
SortedBag. distinct()
SortedSetIterable<T>
SortedBag. selectUnique()
SortedSetIterable<Pair<T,java.lang.Integer>>
SortedBag. zipWithIndex()
-
Uses of SortedSetIterable in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return SortedSetIterable Modifier and Type Method Description SortedSetIterable<V>
SortedSetMultimap. get(K key)
-
Uses of SortedSetIterable in org.eclipse.collections.api.partition.set.sorted
Methods in org.eclipse.collections.api.partition.set.sorted that return SortedSetIterable Modifier and Type Method Description SortedSetIterable<T>
PartitionSortedSet. getRejected()
SortedSetIterable<T>
PartitionSortedSet. getSelected()
-
Uses of SortedSetIterable in org.eclipse.collections.api.set.sorted
Subinterfaces of SortedSetIterable 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.Methods in org.eclipse.collections.api.set.sorted that return SortedSetIterable Modifier and Type Method Description SortedSetIterable<T>
SortedSetIterable. difference(SetIterable<? extends T> subtrahendSet)
Returns the set of all members ofthis
that are not members ofsubtrahendSet
.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 boththis
andset
.SortedSetIterable<SortedSetIterable<T>>
SortedSetIterable. powerSet()
Returns the set whose members are all possible subsets ofthis
.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(java.lang.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 ofthis
andsetB
(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 ofthis
orset
or both.SortedSetIterable<Pair<T,java.lang.Integer>>
SortedSetIterable. zipWithIndex()
Methods in org.eclipse.collections.api.set.sorted that return types with arguments of type SortedSetIterable 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 ofthis
. -
Uses of SortedSetIterable in org.eclipse.collections.impl.block.factory
Methods in org.eclipse.collections.impl.block.factory that return types with arguments of type SortedSetIterable Modifier and Type Method Description static <T> SerializableComparator<SortedSetIterable<T>>
Comparators. powerSet()
Methods in org.eclipse.collections.impl.block.factory with parameters of type SortedSetIterable Modifier and Type Method Description int
Comparators.PowerSetComparator. compare(SortedSetIterable<T> setA, SortedSetIterable<T> setB)
-
Uses of SortedSetIterable in org.eclipse.collections.impl.lazy.parallel.set.sorted
Constructors in org.eclipse.collections.impl.lazy.parallel.set.sorted with parameters of type SortedSetIterable Constructor Description NonParallelSortedSetIterable(SortedSetIterable<T> delegate)
-
Uses of SortedSetIterable in org.eclipse.collections.impl.set.sorted.immutable
Classes in org.eclipse.collections.impl.set.sorted.immutable that implement SortedSetIterable 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>
Methods in org.eclipse.collections.impl.set.sorted.immutable that return types with arguments of type SortedSetIterable Modifier and Type Method Description ImmutableSortedSet<SortedSetIterable<T>>
AbstractImmutableSortedSet. powerSet()
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type SortedSetIterable Modifier and Type Method Description int
ImmutableEmptySortedSet. compareTo(SortedSetIterable<T> o)
int
ImmutableTreeSet. compareTo(SortedSetIterable<T> otherSet)
-
Uses of SortedSetIterable in org.eclipse.collections.impl.set.sorted.mutable
Classes in org.eclipse.collections.impl.set.sorted.mutable that implement SortedSetIterable 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.Methods in org.eclipse.collections.impl.set.sorted.mutable that return types with arguments of type SortedSetIterable 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()
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type SortedSetIterable 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)
-
Uses of SortedSetIterable in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type SortedSetIterable Modifier and Type Method Description static <T> int
SortedSetIterables. compare(SortedSetIterable<T> setA, SortedSetIterable<T> setB)
-