Uses of Interface
org.eclipse.collections.api.bag.sorted.ImmutableSortedBag
Packages that use ImmutableSortedBag
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 ImmutableSortedBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ImmutableSortedBagModifier and TypeMethodDescriptiondefault ImmutableSortedBag<T>RichIterable.toImmutableSortedBag()Converts the RichIterable to the default ImmutableSortedBag implementation.default ImmutableSortedBag<T>RichIterable.toImmutableSortedBag(Comparator<? super T> comparator) Converts the collection to an ImmutableSortedBag implementation and sorts it using the specified comparator.default <V extends Comparable<? super V>>
ImmutableSortedBag<T>RichIterable.toImmutableSortedBagBy(Function<? super T, ? extends V> function) Converts the collection to an ImmutableSortedBag implementation and sorts it based on the natural order of the attribute returned byfunction. -
Uses of ImmutableSortedBag in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableSortedBagModifier and TypeMethodDescriptionImmutableSortedBag.drop(int count) ImmutableSortedBag.newWithAll(Iterable<? extends T> elements) ImmutableSortedBag.newWithout(T element) ImmutableSortedBag.newWithoutAll(Iterable<? extends T> elements) <P> ImmutableSortedBag<T>ImmutableSortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableSortedBag.selectByOccurrences(IntPredicate predicate) default ImmutableSortedBag<T>ImmutableSortedBag.selectDuplicates()<S> ImmutableSortedBag<S>ImmutableSortedBag.selectInstancesOf(Class<S> clazz) <P> ImmutableSortedBag<T>ImmutableSortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableSortedBag.take(int count) SortedBag.toImmutable()Convert the SortedBag to an ImmutableSortedBag.default ImmutableSortedBag<T>ImmutableSortedBag.toImmutableSortedBag()default ImmutableSortedBag<T>MutableSortedBag.toImmutableSortedBag()ImmutableSortedBag.toReversed() -
Uses of ImmutableSortedBag in org.eclipse.collections.api.factory.bag.sorted
Methods in org.eclipse.collections.api.factory.bag.sorted that return ImmutableSortedBagModifier and TypeMethodDescription<T> ImmutableSortedBag<T>ImmutableSortedBagFactory.empty()<T> ImmutableSortedBag<T>ImmutableSortedBagFactory.empty(Comparator<? super T> comparator) <T> ImmutableSortedBag<T>ImmutableSortedBagFactory.of()Same asImmutableSortedBagFactory.empty().<T> ImmutableSortedBag<T>ImmutableSortedBagFactory.of(Comparator<? super T> comparator) <T> ImmutableSortedBag<T>ImmutableSortedBagFactory.of(Comparator<? super T> comparator, T... items) <T> ImmutableSortedBag<T>ImmutableSortedBagFactory.of(T... items) <T> ImmutableSortedBag<T><T> ImmutableSortedBag<T>ImmutableSortedBagFactory.ofAll(Comparator<? super T> comparator, Iterable<? extends T> items) <T> ImmutableSortedBag<T>ImmutableSortedBagFactory.ofSortedBag(SortedBag<T> bag) <T> ImmutableSortedBag<T>ImmutableSortedBagFactory.with()Same asImmutableSortedBagFactory.empty().<T> ImmutableSortedBag<T>ImmutableSortedBagFactory.with(Comparator<? super T> comparator) <T> ImmutableSortedBag<T>ImmutableSortedBagFactory.with(Comparator<? super T> comparator, T... items) <T> ImmutableSortedBag<T>ImmutableSortedBagFactory.with(T... items) <T> ImmutableSortedBag<T><T> ImmutableSortedBag<T>ImmutableSortedBagFactory.withAll(Comparator<? super T> comparator, Iterable<? extends T> items) <T> ImmutableSortedBag<T>ImmutableSortedBagFactory.withSortedBag(SortedBag<T> bag) -
Uses of ImmutableSortedBag in org.eclipse.collections.api.multimap.sortedbag
Methods in org.eclipse.collections.api.multimap.sortedbag that return ImmutableSortedBag -
Uses of ImmutableSortedBag in org.eclipse.collections.api.partition.bag.sorted
Methods in org.eclipse.collections.api.partition.bag.sorted that return ImmutableSortedBagModifier and TypeMethodDescriptionPartitionImmutableSortedBag.getRejected()PartitionImmutableSortedBag.getSelected()