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 ofMaporg.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. -
-
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 interfacePartitionImmutableBag<T>A PartitionImmutableBag is the result of splitting an immutable bag into two immutable bags based on a Predicate.interfacePartitionImmutableBagIterable<T>A PartitionImmutableBagIterable is the result of splitting a mutable bag into two ImmutableBagIterables based on a Predicate.interfacePartitionMutableBag<T>A PartitionMutableBag is the result of splitting a mutable bag into two mutable bags based on a Predicate.interfacePartitionMutableBagIterable<T>A PartitionMutableBagIterable is the result of splitting a mutable bag into two MutableBagIterables based on a Predicate.interfacePartitionUnsortedBag<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 interfacePartitionImmutableSortedBag<T>A PartitionImmutableSortedBag is the result of splitting an immutable sorted bag into two immutable sorted bags based on a Predicate.interfacePartitionMutableSortedBag<T>interfacePartitionSortedBag<T>
-