Uses of Interface
org.eclipse.collections.api.bag.sorted.ImmutableSortedBag
-
Packages that use ImmutableSortedBag 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 ImmutableSortedBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ImmutableSortedBag Modifier and Type Method Description default 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 ImmutableSortedBag Modifier and Type Method Description ImmutableSortedBag<T>ImmutableSortedBag. drop(int count)ImmutableSortedBag<T>ImmutableSortedBag. dropWhile(Predicate<? super T> predicate)ImmutableSortedBag<T>ImmutableSortedBag. newWith(T element)ImmutableSortedBag<T>ImmutableSortedBag. newWithAll(Iterable<? extends T> elements)ImmutableSortedBag<T>ImmutableSortedBag. newWithout(T element)ImmutableSortedBag<T>ImmutableSortedBag. newWithoutAll(Iterable<? extends T> elements)ImmutableSortedBag<T>ImmutableSortedBag. reject(Predicate<? super T> predicate)<P> ImmutableSortedBag<T>ImmutableSortedBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)ImmutableSortedBag<T>ImmutableSortedBag. select(Predicate<? super T> predicate)ImmutableSortedBag<T>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<T>ImmutableSortedBag. take(int count)ImmutableSortedBag<T>ImmutableSortedBag. takeWhile(Predicate<? super T> predicate)ImmutableSortedBag<T>ImmutableSortedBag. tap(Procedure<? super T> procedure)ImmutableSortedBag<T>SortedBag. toImmutable()Convert the SortedBag to an ImmutableSortedBag.default ImmutableSortedBag<T>ImmutableSortedBag. toImmutableSortedBag()default ImmutableSortedBag<T>MutableSortedBag. toImmutableSortedBag()ImmutableSortedBag<T>ImmutableSortedBag. toReversed() -
Uses of ImmutableSortedBag in org.eclipse.collections.api.factory.bag.sorted
Methods in org.eclipse.collections.api.factory.bag.sorted that return ImmutableSortedBag Modifier and Type Method Description <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>ImmutableSortedBagFactory. ofAll(Iterable<? extends T> items)<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>ImmutableSortedBagFactory. withAll(Iterable<? extends T> items)<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 Modifier and Type Method Description ImmutableSortedBag<V>ImmutableSortedBagMultimap. get(K key) -
Uses of ImmutableSortedBag in org.eclipse.collections.api.partition.bag.sorted
Methods in org.eclipse.collections.api.partition.bag.sorted that return ImmutableSortedBag Modifier and Type Method Description ImmutableSortedBag<T>PartitionImmutableSortedBag. getRejected()ImmutableSortedBag<T>PartitionImmutableSortedBag. getSelected()
-