Uses of Interface
org.eclipse.collections.api.bag.sorted.MutableSortedBag
-
Packages that use MutableSortedBag 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.bag.sorted org.eclipse.collections.api.multimap.sortedbag This package contains interfaces forSortedBagMultimap.org.eclipse.collections.api.partition.bag.sorted This package contains interfaces forPartitionSortedBag. -
-
Uses of MutableSortedBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableSortedBag Modifier and Type Method Description MutableSortedBag<T>ParallelIterable. toSortedBag()MutableSortedBag<T>ParallelIterable. toSortedBag(Comparator<? super T> comparator)MutableSortedBag<T>RichIterable. toSortedBag()Converts the collection to a MutableSortedBag implementation and sorts it using the natural order of the elements.MutableSortedBag<T>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 MutableSortedBag Modifier and Type Method Description MutableSortedBag<T>MutableSortedBag. asSynchronized()MutableSortedBag<T>MutableSortedBag. asUnmodifiable()Returns an unmodifiable view of the set.MutableSortedBag<T>MutableSortedBag. clone()MutableSortedBag<T>MutableSortedBag. drop(int count)MutableSortedBag<T>MutableSortedBag. dropWhile(Predicate<? super T> predicate)MutableSortedBag<T>MutableSortedBag. newEmpty()MutableSortedBag<T>MutableSortedBag. reject(Predicate<? super T> predicate)<P> MutableSortedBag<T>MutableSortedBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)MutableSortedBag<T>MutableSortedBag. select(Predicate<? super T> predicate)MutableSortedBag<T>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<T>MutableSortedBag. take(int count)MutableSortedBag<T>MutableSortedBag. takeWhile(Predicate<? super T> predicate)MutableSortedBag<T>MutableSortedBag. tap(Procedure<? super T> procedure)MutableSortedBag<T>MutableSortedBag. toReversed()default MutableSortedBag<T>MutableSortedBag. with(T element)default MutableSortedBag<T>MutableSortedBag. withAll(Iterable<? extends T> elements)default MutableSortedBag<T>MutableSortedBag. without(T element)default MutableSortedBag<T>MutableSortedBag. withoutAll(Iterable<? extends T> elements) -
Uses of MutableSortedBag in org.eclipse.collections.api.factory.bag.sorted
Methods in org.eclipse.collections.api.factory.bag.sorted that return MutableSortedBag Modifier and Type Method Description <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>MutableSortedBagFactory. ofAll(Iterable<? extends T> items)<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>MutableSortedBagFactory. withAll(Iterable<? extends T> items)<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 MutableSortedBag Modifier and Type Method Description MutableSortedBag<V>MutableSortedBagMultimap. get(K key)MutableSortedBag<V>MutableSortedBagMultimap. getIfAbsentPutAll(K key, Iterable<? extends V> values)MutableSortedBag<V>MutableSortedBagMultimap. removeAll(Object key)MutableSortedBag<V>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 MutableSortedBag Modifier and Type Method Description MutableSortedBag<T>PartitionMutableSortedBag. getRejected()MutableSortedBag<T>PartitionMutableSortedBag. getSelected()
-