Uses of Interface
org.eclipse.collections.api.partition.list.PartitionMutableList
| Package | Description |
|---|---|
| org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List. |
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| org.eclipse.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| org.eclipse.collections.impl.lazy |
This package contains implementations of the
LazyIterable interface. |
| org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
| org.eclipse.collections.impl.map.ordered.mutable | |
| org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
| org.eclipse.collections.impl.partition.list |
This package contains implementations of the
PartitionList interface. |
| org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
| org.eclipse.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
-
Uses of PartitionMutableList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return PartitionMutableList Modifier and Type Method Description PartitionMutableList<T>MutableList. partition(Predicate<? super T> predicate)PartitionMutableList<T>MutableList. partitionWhile(Predicate<? super T> predicate)<P> PartitionMutableList<T>MutableList. partitionWith(Predicate2<? super T,? super P> predicate, P parameter) -
Uses of PartitionMutableList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return PartitionMutableList Modifier and Type Method Description PartitionMutableList<V>MutableOrderedMap. partition(Predicate<? super V> predicate)PartitionMutableList<V>MutableOrderedMap. partitionWhile(Predicate<? super V> predicate)<P> PartitionMutableList<V>MutableOrderedMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter) -
Uses of PartitionMutableList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return PartitionMutableList Modifier and Type Method Description PartitionMutableList<V>MutableSortedMap. partition(Predicate<? super V> predicate)PartitionMutableList<V>MutableSortedMap. partitionWhile(Predicate<? super V> predicate)<P> PartitionMutableList<V>MutableSortedMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter) -
Uses of PartitionMutableList in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy that return PartitionMutableList Modifier and Type Method Description PartitionMutableList<T>AbstractLazyIterable. partition(Predicate<? super T> predicate)<P> PartitionMutableList<T>AbstractLazyIterable. partitionWith(Predicate2<? super T,? super P> predicate, P parameter) -
Uses of PartitionMutableList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return PartitionMutableList Modifier and Type Method Description PartitionMutableList<T>AbstractListAdapter. partition(Predicate<? super T> predicate)PartitionMutableList<T>AbstractMutableList. partition(Predicate<? super T> predicate)PartitionMutableList<T>ArrayListAdapter. partition(Predicate<? super T> predicate)PartitionMutableList<T>MultiReaderFastList. partition(Predicate<? super T> predicate)PartitionMutableList<T>RandomAccessListAdapter. partition(Predicate<? super T> predicate)PartitionMutableList<T>SynchronizedMutableList. partition(Predicate<? super T> predicate)PartitionMutableList<T>UnmodifiableMutableList. partition(Predicate<? super T> predicate)PartitionMutableList<T>AbstractMutableList. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>ArrayListAdapter. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>FastList. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>ListAdapter. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>MultiReaderFastList. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>RandomAccessListAdapter. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>SynchronizedMutableList. partitionWhile(Predicate<? super T> predicate)PartitionMutableList<T>UnmodifiableMutableList. partitionWhile(Predicate<? super T> predicate)<P> PartitionMutableList<T>AbstractListAdapter. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableList<T>AbstractMutableList. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableList<T>ArrayListAdapter. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableList<T>MultiReaderFastList. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableList<T>RandomAccessListAdapter. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableList<T>SynchronizedMutableList. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)<P> PartitionMutableList<T>UnmodifiableMutableList. partitionWith(Predicate2<? super T,? super P> predicate, P parameter) -
Uses of PartitionMutableList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return PartitionMutableList Modifier and Type Method Description PartitionMutableList<V>OrderedMapAdapter. partition(Predicate<? super V> predicate)PartitionMutableList<V>UnmodifiableMutableOrderedMap. partition(Predicate<? super V> predicate)PartitionMutableList<V>OrderedMapAdapter. partitionWhile(Predicate<? super V> predicate)PartitionMutableList<V>UnmodifiableMutableOrderedMap. partitionWhile(Predicate<? super V> predicate)<P> PartitionMutableList<V>OrderedMapAdapter. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionMutableList<V>UnmodifiableMutableOrderedMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter) -
Uses of PartitionMutableList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return PartitionMutableList Modifier and Type Method Description PartitionMutableList<V>AbstractMutableSortedMap. partition(Predicate<? super V> predicate)PartitionMutableList<V>SynchronizedSortedMap. partition(Predicate<? super V> predicate)PartitionMutableList<V>UnmodifiableTreeMap. partition(Predicate<? super V> predicate)PartitionMutableList<V>SortedMapAdapter. partitionWhile(Predicate<? super V> predicate)PartitionMutableList<V>SynchronizedSortedMap. partitionWhile(Predicate<? super V> predicate)PartitionMutableList<V>TreeSortedMap. partitionWhile(Predicate<? super V> predicate)PartitionMutableList<V>UnmodifiableTreeMap. partitionWhile(Predicate<? super V> predicate)<P> PartitionMutableList<V>AbstractMutableSortedMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionMutableList<V>SynchronizedSortedMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)<P> PartitionMutableList<V>UnmodifiableTreeMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter) -
Uses of PartitionMutableList in org.eclipse.collections.impl.partition.list
Classes in org.eclipse.collections.impl.partition.list that implement PartitionMutableList Modifier and Type Class Description classPartitionFastList<T> -
Uses of PartitionMutableList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return PartitionMutableList Modifier and Type Method Description static <T> PartitionMutableList<T>ArrayListIterate. partition(ArrayList<T> list, Predicate<? super T> predicate)static <T> PartitionMutableList<T>ListIterate. partition(List<T> list, Predicate<? super T> predicate)static <T> PartitionMutableList<T>ArrayListIterate. partitionWhile(ArrayList<T> list, Predicate<? super T> predicate)static <T> PartitionMutableList<T>ListIterate. partitionWhile(List<T> list, Predicate<? super T> predicate)static <T, P> PartitionMutableList<T>ArrayListIterate. partitionWith(ArrayList<T> list, Predicate2<? super T,? super P> predicate, P parameter)static <T, P> PartitionMutableList<T>ListIterate. partitionWith(List<T> list, Predicate2<? super T,? super P> predicate, P parameter) -
Uses of PartitionMutableList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return PartitionMutableList Modifier and Type Method Description static <T> PartitionMutableList<T>IterableIterate. partition(Iterable<T> iterable, Predicate<? super T> predicate)static <T> PartitionMutableList<T>IteratorIterate. partition(Iterator<T> iterator, Predicate<? super T> predicate)static <T> PartitionMutableList<T>RandomAccessListIterate. partition(List<T> list, Predicate<? super T> predicate)static <T> PartitionMutableList<T>RandomAccessListIterate. partitionWhile(List<T> list, Predicate<? super T> predicate)static <T, P> PartitionMutableList<T>IterableIterate. partitionWith(Iterable<T> iterable, Predicate2<? super T,? super P> predicate, P parameter)static <T, P> PartitionMutableList<T>IteratorIterate. partitionWith(Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter)static <T, P> PartitionMutableList<T>RandomAccessListIterate. partitionWith(List<T> list, Predicate2<? super T,? super P> predicate, P parameter)