Uses of Interface
org.eclipse.collections.api.bag.sorted.MutableSortedBag
Packages that use MutableSortedBag
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for SortedBag API.
This package contains interfaces for
SortedBagMultimap.This package contains interfaces for
PartitionSortedBag.-
Uses of MutableSortedBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableSortedBagModifier and TypeMethodDescriptionParallelIterable.toSortedBag()ParallelIterable.toSortedBag(Comparator<? super T> comparator) RichIterable.toSortedBag()Converts the collection to a MutableSortedBag implementation and sorts it using the natural order of the elements.RichIterable.toSortedBag(Comparator<? super T> comparator) Converts the collection to the MutableSortedBag implementation and sorts it using the specified comparator.<V extends Comparable<? super V>>
MutableSortedBag<T>ParallelIterable.toSortedBagBy(Function<? super T, ? extends V> function) default <V extends Comparable<? super V>>
MutableSortedBag<T>RichIterable.toSortedBagBy(Function<? super T, ? extends V> function) Converts the collection to a MutableSortedBag implementation and sorts it based on the natural order of the attribute returned byfunction. -
Uses of MutableSortedBag in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableSortedBagModifier and TypeMethodDescriptionMutableSortedBag.asSynchronized()MutableSortedBag.asUnmodifiable()Returns an unmodifiable view of the set.MutableSortedBag.clone()MutableSortedBag.drop(int count) MutableSortedBag.newEmpty()<P> MutableSortedBag<T>MutableSortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) MutableSortedBag.selectByOccurrences(IntPredicate predicate) default MutableSortedBag<T>MutableSortedBag.selectDuplicates()<S> MutableSortedBag<S>MutableSortedBag.selectInstancesOf(Class<S> clazz) <P> MutableSortedBag<T>MutableSortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) MutableSortedBag.take(int count) MutableSortedBag.toReversed()default MutableSortedBag<T>default MutableSortedBag<T>default MutableSortedBag<T>MutableSortedBag.withOccurrences(T element, int occurrences) default MutableSortedBag<T>default MutableSortedBag<T>MutableSortedBag.withoutAll(Iterable<? extends T> elements) default MutableSortedBag<T>MutableSortedBag.withoutOccurrences(T element, int occurrences) -
Uses of MutableSortedBag in org.eclipse.collections.api.factory.bag.sorted
Methods in org.eclipse.collections.api.factory.bag.sorted that return MutableSortedBagModifier and TypeMethodDescription<T> MutableSortedBag<T>MutableSortedBagFactory.empty()<T> MutableSortedBag<T>MutableSortedBagFactory.empty(Comparator<? super T> comparator) <T> MutableSortedBag<T>MutableSortedBagFactory.of()Same asMutableSortedBagFactory.with().<T> MutableSortedBag<T>MutableSortedBagFactory.of(Comparator<? super T> comparator) <T> MutableSortedBag<T>MutableSortedBagFactory.of(Comparator<? super T> comparator, T... elements) <T> MutableSortedBag<T>MutableSortedBagFactory.of(T... elements) <T> MutableSortedBag<T><T> MutableSortedBag<T>MutableSortedBagFactory.ofAll(Comparator<? super T> comparator, Iterable<? extends T> items) <T> MutableSortedBag<T>MutableSortedBagFactory.with()<T> MutableSortedBag<T>MutableSortedBagFactory.with(Comparator<? super T> comparator) <T> MutableSortedBag<T>MutableSortedBagFactory.with(Comparator<? super T> comparator, T... elements) <T> MutableSortedBag<T>MutableSortedBagFactory.with(T... elements) <T> MutableSortedBag<T><T> MutableSortedBag<T>MutableSortedBagFactory.withAll(Comparator<? super T> comparator, Iterable<? extends T> items) -
Uses of MutableSortedBag in org.eclipse.collections.api.multimap.sortedbag
Methods in org.eclipse.collections.api.multimap.sortedbag that return MutableSortedBagModifier and TypeMethodDescriptionMutableSortedBagMultimap.getIfAbsentPutAll(K key, Iterable<? extends V> values) MutableSortedBagMultimap.replaceValues(K key, Iterable<? extends V> values) -
Uses of MutableSortedBag in org.eclipse.collections.api.partition.bag.sorted
Methods in org.eclipse.collections.api.partition.bag.sorted that return MutableSortedBagModifier and TypeMethodDescriptionPartitionMutableSortedBag.getRejected()PartitionMutableSortedBag.getSelected()