Uses of Interface
org.eclipse.collections.api.bag.sorted.SortedBag
Package
Description
This package contains interfaces for SortedBag API.
This package contains interfaces for
SortedBagMultimap
.This package contains interfaces for
PartitionSortedBag
.This package contains implementations of
MutableSortedBag
.This package contains
SerializeTestHelper
and Verify
classes.This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of SortedBag in org.eclipse.collections.api.bag.sorted
Modifier and TypeInterfaceDescriptioninterface
ImmutableSortedBag is the non-modifiable equivalent interface toMutableSortedBag
.interface
Modifier and TypeMethodDescriptionSortedBag.drop
(int count) SortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) SortedBag.selectByOccurrences
(IntPredicate predicate) SortedBag.selectDuplicates()
<S> SortedBag<S>
SortedBag.selectInstancesOf
(Class<S> clazz) SortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) SortedBag.take
(int count) SortedBag.toReversed()
-
Uses of SortedBag in org.eclipse.collections.api.factory.bag.sorted
Modifier and TypeMethodDescription<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.ofSortedBag
(SortedBag<T> bag) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.withSortedBag
(SortedBag<T> bag) -
Uses of SortedBag in org.eclipse.collections.api.multimap.sortedbag
-
Uses of SortedBag in org.eclipse.collections.api.partition.bag.sorted
Modifier and TypeMethodDescriptionPartitionSortedBag.getRejected()
PartitionSortedBag.getSelected()
-
Uses of SortedBag in org.eclipse.collections.impl.bag.sorted.immutable
Modifier and TypeMethodDescription<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.ofSortedBag
(SortedBag<T> bag) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.withSortedBag
(SortedBag<T> bag) -
Uses of SortedBag in org.eclipse.collections.impl.bag.sorted.mutable
Modifier and TypeClassDescriptionclass
class
A synchronized view of aMutableSortedBag
.class
TreeBag<T>
A TreeBag is a MutableSortedBag which uses a SortedMap as its underlying data store.class
An unmodifiable view of a SortedBag.Modifier and TypeMethodDescriptionint
int
int
-
Uses of SortedBag in org.eclipse.collections.impl.test
Modifier and TypeMethodDescriptionstatic void
Verify.assertSortedBagsEqual
(String bagName, SortedBag<?> expectedBag, SortedBag<?> actualBag) static void
Verify.assertSortedBagsEqual
(SortedBag<?> expectedBag, SortedBag<?> actualBag) -
Uses of SortedBag in org.eclipse.collections.impl.utility.internal