Uses of Interface
org.eclipse.collections.api.bag.sorted.SortedBag
-
Packages that use SortedBag Package Description 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.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag.org.eclipse.collections.impl.test This package containsSerializeTestHelperandVerifyclasses.org.eclipse.collections.impl.utility.internal 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
Subinterfaces of SortedBag in org.eclipse.collections.api.bag.sorted Modifier and Type Interface Description interfaceImmutableSortedBag<T>ImmutableSortedBag is the non-modifiable equivalent interface toMutableSortedBag.interfaceMutableSortedBag<T>Methods in org.eclipse.collections.api.bag.sorted that return SortedBag Modifier and Type Method Description SortedBag<T>SortedBag. drop(int count)SortedBag<T>SortedBag. dropWhile(Predicate<? super T> predicate)SortedBag<T>SortedBag. reject(Predicate<? super T> predicate)<P> SortedBag<T>SortedBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)SortedBag<T>SortedBag. select(Predicate<? super T> predicate)SortedBag<T>SortedBag. selectByOccurrences(IntPredicate predicate)default SortedBag<T>SortedBag. selectDuplicates()<S> SortedBag<S>SortedBag. selectInstancesOf(java.lang.Class<S> clazz)<P> SortedBag<T>SortedBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter)SortedBag<T>SortedBag. take(int count)SortedBag<T>SortedBag. takeWhile(Predicate<? super T> predicate)SortedBag<T>SortedBag. tap(Procedure<? super T> procedure)SortedBag<T>SortedBag. toReversed() -
Uses of SortedBag in org.eclipse.collections.api.factory.bag.sorted
Methods in org.eclipse.collections.api.factory.bag.sorted with parameters of type SortedBag Modifier and Type Method Description <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
Methods in org.eclipse.collections.api.multimap.sortedbag that return SortedBag Modifier and Type Method Description SortedBag<V>SortedBagMultimap. get(K key) -
Uses of SortedBag in org.eclipse.collections.api.partition.bag.sorted
Methods in org.eclipse.collections.api.partition.bag.sorted that return SortedBag Modifier and Type Method Description SortedBag<T>PartitionSortedBag. getRejected()SortedBag<T>PartitionSortedBag. getSelected() -
Uses of SortedBag in org.eclipse.collections.impl.bag.sorted.immutable
Classes in org.eclipse.collections.impl.bag.sorted.immutable that implement SortedBag Modifier and Type Class Description (package private) classAbstractImmutableSortedBag<T>(package private) classImmutableEmptySortedBag<T>(package private) classImmutableSortedBagImpl<T>Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type SortedBag Modifier and Type Method Description intImmutableEmptySortedBag. compareTo(SortedBag<T> o)intImmutableSortedBagImpl. compareTo(SortedBag<T> otherBag)<T> ImmutableSortedBag<T>ImmutableSortedBagFactoryImpl. ofSortedBag(SortedBag<T> bag)<T> ImmutableSortedBag<T>ImmutableSortedBagFactoryImpl. withSortedBag(SortedBag<T> bag)Constructors in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type SortedBag Constructor Description ImmutableSortedBagImpl(SortedBag<T> sortedBag) -
Uses of SortedBag in org.eclipse.collections.impl.bag.sorted.mutable
Classes in org.eclipse.collections.impl.bag.sorted.mutable that implement SortedBag Modifier and Type Class Description classAbstractMutableSortedBag<T>classSynchronizedSortedBag<T>A synchronized view of aMutableSortedBag.classTreeBag<T>A TreeBag is a MutableSortedBag which uses a SortedMap as its underlying data store.classUnmodifiableSortedBag<T>An unmodifiable view of a SortedBag.Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type SortedBag Modifier and Type Method Description intSynchronizedSortedBag. compareTo(SortedBag<T> o)intTreeBag. compareTo(SortedBag<T> otherBag)intUnmodifiableSortedBag. compareTo(SortedBag<T> o)Constructors in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type SortedBag Constructor Description TreeBag(SortedBag<T> sortedBag) -
Uses of SortedBag in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test with parameters of type SortedBag Modifier and Type Method Description static voidVerify. assertSortedBagsEqual(java.lang.String bagName, SortedBag<?> expectedBag, SortedBag<?> actualBag)static voidVerify. assertSortedBagsEqual(SortedBag<?> expectedBag, SortedBag<?> actualBag) -
Uses of SortedBag in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type SortedBag Modifier and Type Method Description static <T> intSortedBagIterables. compare(SortedBag<T> bagA, SortedBag<T> bagB)
-