Uses of Interface
org.eclipse.collections.api.partition.bag.PartitionBag
-
Packages that use PartitionBag Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.partition.bag This package contains interfaces forPartitionBag
.org.eclipse.collections.api.partition.bag.sorted This package contains interfaces forPartitionSortedBag
.org.eclipse.collections.impl.partition.bag This package contains implementations of thePartitionBag
interface.org.eclipse.collections.impl.partition.bag.sorted This package contains implementations of thePartitionSortedBag
interface. -
-
Uses of PartitionBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return PartitionBag Modifier and Type Method Description PartitionBag<T>
Bag. partition(Predicate<? super T> predicate)
<P> PartitionBag<T>
Bag. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of PartitionBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return PartitionBag Modifier and Type Method Description PartitionBag<V>
UnsortedMapIterable. partition(Predicate<? super V> predicate)
<P> PartitionBag<V>
UnsortedMapIterable. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)
-
Uses of PartitionBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return PartitionBag Modifier and Type Method Description PartitionBag<V>
PrimitiveObjectMap. partition(Predicate<? super V> predicate)
<P> PartitionBag<V>
PrimitiveObjectMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)
-
Uses of PartitionBag in org.eclipse.collections.api.partition.bag
Subinterfaces of PartitionBag in org.eclipse.collections.api.partition.bag Modifier and Type Interface Description interface
PartitionImmutableBag<T>
A PartitionImmutableBag is the result of splitting an immutable bag into two immutable bags based on a Predicate.interface
PartitionImmutableBagIterable<T>
A PartitionImmutableBagIterable is the result of splitting a mutable bag into two ImmutableBagIterables based on a Predicate.interface
PartitionMutableBag<T>
A PartitionMutableBag is the result of splitting a mutable bag into two mutable bags based on a Predicate.interface
PartitionMutableBagIterable<T>
A PartitionMutableBagIterable is the result of splitting a mutable bag into two MutableBagIterables based on a Predicate.interface
PartitionUnsortedBag<T>
-
Uses of PartitionBag in org.eclipse.collections.api.partition.bag.sorted
Subinterfaces of PartitionBag in org.eclipse.collections.api.partition.bag.sorted Modifier and Type Interface Description interface
PartitionImmutableSortedBag<T>
A PartitionImmutableSortedBag is the result of splitting an immutable sorted bag into two immutable sorted bags based on a Predicate.interface
PartitionMutableSortedBag<T>
interface
PartitionSortedBag<T>
-
Uses of PartitionBag in org.eclipse.collections.impl.partition.bag
Classes in org.eclipse.collections.impl.partition.bag that implement PartitionBag Modifier and Type Class Description class
PartitionHashBag<T>
class
PartitionImmutableBagImpl<T>
-
Uses of PartitionBag in org.eclipse.collections.impl.partition.bag.sorted
Classes in org.eclipse.collections.impl.partition.bag.sorted that implement PartitionBag Modifier and Type Class Description class
PartitionImmutableSortedBagImpl<T>
class
PartitionTreeBag<T>
-