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 interfaceImmutableSortedSet<T>ImmutableSortedSet is the non-modifiable equivalent interface toMutableSortedSet.interfaceMutableSortedSet<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 ofthisthat 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 boththisandset.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 ofthisandsetB(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 ofthisorsetor 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 intComparators.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) classAbstractImmutableSortedSet<T>This class is the parent class for all ImmutableSortedSets.(package private) classImmutableEmptySortedSet<T>This is a zero elementImmutableSortedSetwhich is created by calling the SortedSets.immutable.empty() method.(package private) classImmutableTreeSet<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 intImmutableEmptySortedSet. compareTo(SortedSetIterable<T> o)intImmutableTreeSet. 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 classSortedSetAdapter<T>This class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.classSynchronizedSortedSet<T>A synchronized view of aMutableSortedSet.classTreeSortedSet<T>classUnmodifiableSortedSet<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 intSortedSetAdapter. compareTo(SortedSetIterable<T> o)intSynchronizedSortedSet. compareTo(SortedSetIterable<T> o)intTreeSortedSet. compareTo(SortedSetIterable<T> otherSet)intUnmodifiableSortedSet. 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> intSortedSetIterables. compare(SortedSetIterable<T> setA, SortedSetIterable<T> setB)
-