Uses of Interface
org.eclipse.collections.api.partition.PartitionMutableCollection
-
-
Uses of PartitionMutableCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return PartitionMutableCollection Modifier and Type Method Description PartitionMutableCollection<T>MutableCollection. partition(Predicate<? super T> predicate)Filters a collection into a PartitionedIterable based on the evaluation of the predicate.<P> PartitionMutableCollection<T>MutableCollection. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)Filters a collection into a PartitionIterable based on the evaluation of the predicate. -
Uses of PartitionMutableCollection in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return PartitionMutableCollection Modifier and Type Method Description PartitionMutableCollection<V>MutableMapIterable. partition(Predicate<? super V> predicate) -
Uses of PartitionMutableCollection in org.eclipse.collections.api.partition.bag
Subinterfaces of PartitionMutableCollection in org.eclipse.collections.api.partition.bag Modifier and Type Interface Description 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. -
Uses of PartitionMutableCollection in org.eclipse.collections.api.partition.bag.sorted
Subinterfaces of PartitionMutableCollection in org.eclipse.collections.api.partition.bag.sorted Modifier and Type Interface Description interfacePartitionMutableSortedBag<T> -
Uses of PartitionMutableCollection in org.eclipse.collections.api.partition.list
Subinterfaces of PartitionMutableCollection in org.eclipse.collections.api.partition.list Modifier and Type Interface Description interfacePartitionMutableList<T>A PartitionMutableList is the result of splitting a mutable list into two mutable lists based on a Predicate. -
Uses of PartitionMutableCollection in org.eclipse.collections.api.partition.set
Subinterfaces of PartitionMutableCollection in org.eclipse.collections.api.partition.set Modifier and Type Interface Description interfacePartitionMutableSet<T>A PartitionMutableSet is the result of splitting a mutable set into two mutable sets based on a Predicate.interfacePartitionMutableSetIterable<T>A PartitionMutableSetIterable is the result of splitting a MutableSetIterable into two MutableSetIterables based on a Predicate. -
Uses of PartitionMutableCollection in org.eclipse.collections.api.partition.set.sorted
Subinterfaces of PartitionMutableCollection in org.eclipse.collections.api.partition.set.sorted Modifier and Type Interface Description interfacePartitionMutableSortedSet<T>A PartitionMutableSortedSet is the result of splitting a mutable sorted set into two mutable sorted sets based on a Predicate. -
Uses of PartitionMutableCollection in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as PartitionMutableCollection Modifier and Type Field Description private PartitionMutableCollection<T>PartitionPredicate2Procedure. partitionMutableCollectionprivate PartitionMutableCollection<T>PartitionProcedure. partitionMutableCollectionConstructors in org.eclipse.collections.impl.block.procedure with parameters of type PartitionMutableCollection Constructor Description PartitionPredicate2Procedure(Predicate2<? super T,? super P> predicate, P parameter, PartitionMutableCollection<T> partitionMutableCollection)PartitionProcedure(Predicate<? super T> predicate, PartitionMutableCollection<T> partitionMutableCollection) -
Uses of PartitionMutableCollection in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return PartitionMutableCollection Modifier and Type Method Description PartitionMutableCollection<T>AbstractCollectionAdapter. partition(Predicate<? super T> predicate)PartitionMutableCollection<T>AbstractSynchronizedMutableCollection. partition(Predicate<? super T> predicate)PartitionMutableCollection<T>AbstractUnmodifiableMutableCollection. partition(Predicate<? super T> predicate)<P> PartitionMutableCollection<T>AbstractCollectionAdapter. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableCollection<T>AbstractSynchronizedMutableCollection. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableCollection<T>AbstractUnmodifiableMutableCollection. partitionWith(Predicate2<? super T,? super P> predicate, P parameter) -
Uses of PartitionMutableCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type PartitionMutableCollection Modifier and Type Method Description private static <T,R extends PartitionMutableCollection<T>>
java.util.function.BinaryOperator<R>Collectors2. mergePartitions()static <T,R extends PartitionMutableCollection<T>>
java.util.stream.Collector<T,?,R>Collectors2. partition(Predicate<? super T> predicate, java.util.function.Supplier<R> supplier)Returns all elements of the stream split into a PartitionMutableCollection after evaluating the predicate.static <T,P,R extends PartitionMutableCollection<T>>
java.util.stream.Collector<T,?,R>Collectors2. partitionWith(Predicate2<? super T,? super P> predicate, P parameter, java.util.function.Supplier<R> supplier)Returns all elements of the stream split into a PartitionMutableCollection after evaluating the predicate. -
Uses of PartitionMutableCollection in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map that return PartitionMutableCollection Modifier and Type Method Description PartitionMutableCollection<V>AbstractSynchronizedMapIterable. partition(Predicate<? super V> predicate) -
Uses of PartitionMutableCollection in org.eclipse.collections.impl.partition.bag
Classes in org.eclipse.collections.impl.partition.bag that implement PartitionMutableCollection Modifier and Type Class Description classPartitionHashBag<T> -
Uses of PartitionMutableCollection in org.eclipse.collections.impl.partition.bag.sorted
Classes in org.eclipse.collections.impl.partition.bag.sorted that implement PartitionMutableCollection Modifier and Type Class Description classPartitionTreeBag<T> -
Uses of PartitionMutableCollection in org.eclipse.collections.impl.partition.list
Classes in org.eclipse.collections.impl.partition.list that implement PartitionMutableCollection Modifier and Type Class Description classPartitionFastList<T> -
Uses of PartitionMutableCollection in org.eclipse.collections.impl.partition.set
Classes in org.eclipse.collections.impl.partition.set that implement PartitionMutableCollection Modifier and Type Class Description classPartitionUnifiedSet<T> -
Uses of PartitionMutableCollection in org.eclipse.collections.impl.partition.set.sorted
Classes in org.eclipse.collections.impl.partition.set.sorted that implement PartitionMutableCollection Modifier and Type Class Description classPartitionTreeSortedSet<T> -
Uses of PartitionMutableCollection in org.eclipse.collections.impl.partition.set.strategy
Classes in org.eclipse.collections.impl.partition.set.strategy that implement PartitionMutableCollection Modifier and Type Class Description classPartitionUnifiedSetWithHashingStrategy<T> -
Uses of PartitionMutableCollection in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with type parameters of type PartitionMutableCollection Modifier and Type Method Description static <T,R extends PartitionMutableCollection<T>>
RIterableIterate. partitionWhile(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target)static <T,R extends PartitionMutableCollection<T>>
RIteratorIterate. partitionWhile(java.util.Iterator<T> iterator, Predicate<? super T> predicate, R target)
-