Uses of Interface
org.eclipse.collections.api.set.sorted.SortedSetIterable
-
Packages that use SortedSetIterable Package Description org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.multimap.sortedset This package contains interfaces forSortedSetMultimap.org.eclipse.collections.api.partition.set.sorted This package contains interfaces forPartitionSortedSet.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API. -
-
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,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(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,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.
-