Uses of Interface
org.eclipse.collections.api.set.sorted.MutableSortedSet
-
Packages that use MutableSortedSet Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.factory.set.sorted This package containsImmutableSortedSetFactoryandMutableSortedSetFactory.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 MutableSortedSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableSortedSet Modifier and Type Method Description MutableSortedSet<T>ParallelIterable. toSortedSet()MutableSortedSet<T>ParallelIterable. toSortedSet(Comparator<? super T> comparator)MutableSortedSet<T>RichIterable. toSortedSet()Converts the collection to a MutableSortedSet implementation and sorts it using the natural order of the elements.MutableSortedSet<T>RichIterable. toSortedSet(Comparator<? super T> comparator)Converts the collection to a MutableSortedSet implementation and sorts it using the specified comparator.<V extends Comparable<? super V>>
MutableSortedSet<T>ParallelIterable. toSortedSetBy(Function<? super T,? extends V> function)default <V extends Comparable<? super V>>
MutableSortedSet<T>RichIterable. toSortedSetBy(Function<? super T,? extends V> function)Converts the collection to a MutableSortedSet implementation and sorts it based on the natural order of the attribute returned byfunction. -
Uses of MutableSortedSet in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableSortedSet Modifier and Type Method Description MutableSortedSet<T>MutableSortedBag. distinct()default MutableSortedSet<T>MutableSortedBag. selectUnique()MutableSortedSet<Pair<T,Integer>>MutableSortedBag. zipWithIndex() -
Uses of MutableSortedSet in org.eclipse.collections.api.factory.set.sorted
Methods in org.eclipse.collections.api.factory.set.sorted that return MutableSortedSet Modifier and Type Method Description <T> MutableSortedSet<T>MutableSortedSetFactory. empty()<T> MutableSortedSet<T>MutableSortedSetFactory. empty(Comparator<? super T> comparator)<T> MutableSortedSet<T>MutableSortedSetFactory. of()Same asMutableSortedSetFactory.empty().<T> MutableSortedSet<T>MutableSortedSetFactory. of(Comparator<? super T> comparator)<T> MutableSortedSet<T>MutableSortedSetFactory. of(Comparator<? super T> comparator, T... items)<T> MutableSortedSet<T>MutableSortedSetFactory. of(T... items)<T> MutableSortedSet<T>MutableSortedSetFactory. ofAll(Iterable<? extends T> items)<T> MutableSortedSet<T>MutableSortedSetFactory. ofAll(Comparator<? super T> comparator, Iterable<? extends T> items)<T> MutableSortedSet<T>MutableSortedSetFactory. with()Same asMutableSortedSetFactory.empty().<T> MutableSortedSet<T>MutableSortedSetFactory. with(Comparator<? super T> comparator)<T> MutableSortedSet<T>MutableSortedSetFactory. with(Comparator<? super T> comparator, T... items)<T> MutableSortedSet<T>MutableSortedSetFactory. with(T... items)<T> MutableSortedSet<T>MutableSortedSetFactory. withAll(Iterable<? extends T> items)<T> MutableSortedSet<T>MutableSortedSetFactory. withAll(Comparator<? super T> comparator, Iterable<? extends T> items) -
Uses of MutableSortedSet in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return MutableSortedSet Modifier and Type Method Description MutableSortedSet<V>MutableSortedSetMultimap. get(K key)MutableSortedSet<V>MutableSortedSetMultimap. getIfAbsentPutAll(K key, Iterable<? extends V> values)MutableSortedSet<V>MutableSortedSetMultimap. removeAll(Object key)MutableSortedSet<V>MutableSortedSetMultimap. replaceValues(K key, Iterable<? extends V> values) -
Uses of MutableSortedSet in org.eclipse.collections.api.partition.set.sorted
Methods in org.eclipse.collections.api.partition.set.sorted that return MutableSortedSet Modifier and Type Method Description MutableSortedSet<T>PartitionMutableSortedSet. getRejected()MutableSortedSet<T>PartitionMutableSortedSet. getSelected() -
Uses of MutableSortedSet in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableSortedSet Modifier and Type Method Description MutableSortedSet<T>MutableSortedSet. asSynchronized()MutableSortedSet<T>MutableSortedSet. asUnmodifiable()Returns an unmodifiable view of the set.MutableSortedSet<T>MutableSortedSet. clone()MutableSortedSet<T>MutableSortedSet. difference(SetIterable<? extends T> subtrahendSet)MutableSortedSet<T>MutableSortedSet. distinct()MutableSortedSet<T>MutableSortedSet. drop(int count)MutableSortedSet<T>MutableSortedSet. dropWhile(Predicate<? super T> predicate)MutableSortedSet<T>MutableSortedSet. headSet(T toElement)MutableSortedSet<T>MutableSortedSet. intersect(SetIterable<? extends T> set)MutableSortedSet<T>MutableSortedSet. newEmpty()MutableSortedSet<SortedSetIterable<T>>MutableSortedSet. powerSet()MutableSortedSet<T>MutableSortedSet. reject(Predicate<? super T> predicate)<P> MutableSortedSet<T>MutableSortedSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)MutableSortedSet<T>MutableSortedSet. select(Predicate<? super T> predicate)<S> MutableSortedSet<S>MutableSortedSet. selectInstancesOf(Class<S> clazz)<P> MutableSortedSet<T>MutableSortedSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)MutableSortedSet<T>MutableSortedSet. subSet(T fromElement, T toElement)MutableSortedSet<T>MutableSortedSet. symmetricDifference(SetIterable<? extends T> setB)MutableSortedSet<T>MutableSortedSet. tailSet(T fromElement)MutableSortedSet<T>MutableSortedSet. take(int count)MutableSortedSet<T>MutableSortedSet. takeWhile(Predicate<? super T> predicate)MutableSortedSet<T>MutableSortedSet. tap(Procedure<? super T> procedure)MutableSortedSet<T>MutableSortedSet. toReversed()MutableSortedSet<T>MutableSortedSet. union(SetIterable<? extends T> set)default MutableSortedSet<T>MutableSortedSet. with(T element)default MutableSortedSet<T>MutableSortedSet. withAll(Iterable<? extends T> elements)default MutableSortedSet<T>MutableSortedSet. without(T element)default MutableSortedSet<T>MutableSortedSet. withoutAll(Iterable<? extends T> elements)MutableSortedSet<Pair<T,Integer>>MutableSortedSet. zipWithIndex()
-