Uses of Interface
org.eclipse.collections.api.set.sorted.SortedSetIterable
Packages that use SortedSetIterable
Package
Description
This package contains interfaces for SortedBag API.
This package contains interfaces for
SortedSetMultimap
.This package contains interfaces for
PartitionSortedSet
.This package contains interfaces for sorted set API.
This package contains factory implementations for
Function
, Predicate
, SerializableComparator
and Procedure
.This package contains implementations of
MutableSortedSet
.This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of SortedSetIterable in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return SortedSetIterableModifier and TypeMethodDescriptionSortedBag.distinct()
SortedBag.selectUnique()
SortedBag.zipWithIndex()
-
Uses of SortedSetIterable in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return SortedSetIterable -
Uses of SortedSetIterable in org.eclipse.collections.api.partition.set.sorted
Methods in org.eclipse.collections.api.partition.set.sorted that return SortedSetIterableModifier and TypeMethodDescriptionPartitionSortedSet.getRejected()
PartitionSortedSet.getSelected()
-
Uses of SortedSetIterable in org.eclipse.collections.api.set.sorted
Subinterfaces of SortedSetIterable in org.eclipse.collections.api.set.sortedModifier and TypeInterfaceDescriptioninterface
ImmutableSortedSet is the non-modifiable equivalent interface toMutableSortedSet
.interface
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 SortedSetIterableModifier and TypeMethodDescriptionSortedSetIterable.difference
(SetIterable<? extends T> subtrahendSet) Returns the set of all members ofthis
that are not members ofsubtrahendSet
.SortedSetIterable.distinct()
SortedSetIterable.drop
(int count) SortedSetIterable.intersect
(SetIterable<? extends T> set) Returns the set of all objects that are members of boththis
andset
.SortedSetIterable.powerSet()
Returns the set whose members are all possible subsets ofthis
.<P> SortedSetIterable<T>
SortedSetIterable.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <S> SortedSetIterable<S>
SortedSetIterable.selectInstancesOf
(Class<S> clazz) <P> SortedSetIterable<T>
SortedSetIterable.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) 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.take
(int count) SortedSetIterable.toReversed()
SortedSetIterable.union
(SetIterable<? extends T> set) Returns the set of all objects that are a member ofthis
orset
or both.SortedSetIterable.zipWithIndex()
Methods in org.eclipse.collections.api.set.sorted that return types with arguments of type SortedSetIterable -
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 SortedSetIterableModifier and TypeMethodDescriptionstatic <T> SerializableComparator<SortedSetIterable<T>>
Comparators.powerSet()
-
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 -
Uses of SortedSetIterable in org.eclipse.collections.impl.set.sorted.mutable
Classes in org.eclipse.collections.impl.set.sorted.mutable that implement SortedSetIterableModifier and TypeClassDescriptionfinal class
This class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.class
A synchronized view of aMutableSortedSet
.class
class
An unmodifiable view of a SortedSet.Methods in org.eclipse.collections.impl.set.sorted.mutable that return types with arguments of type SortedSetIterableModifier and TypeMethodDescriptionSortedSetAdapter.powerSet()
SynchronizedSortedSet.powerSet()
TreeSortedSet.powerSet()
UnmodifiableSortedSet.powerSet()
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type SortedSetIterableModifier and TypeMethodDescriptionint
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 SortedSetIterableModifier and TypeMethodDescriptionstatic <T> int
SortedSetIterables.compare
(SortedSetIterable<T> setA, SortedSetIterable<T> setB)