Uses of Interface
org.eclipse.collections.api.block.predicate.Predicate
-
Packages that use Predicate Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.bimap This package contains interfaces for BiMap API.org.eclipse.collections.api.collection org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.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.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.ordered org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.org.eclipse.collections.impl.block.function org.eclipse.collections.impl.block.predicate This package contains implementations ofPredicate
andPredicate2
.org.eclipse.collections.impl.block.predicate.checked This package contains abstract implementations ofPredicate
andPredicate2
.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedure
andProcedure2
.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.forkjoin This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join framework.org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
interface.org.eclipse.collections.impl.lazy.iterator This package contains implementations of theIterator
interface.org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.lazy.parallel.bag org.eclipse.collections.impl.lazy.parallel.list org.eclipse.collections.impl.lazy.parallel.set org.eclipse.collections.impl.lazy.parallel.set.sorted org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list This package contains implementations of theListIterable
interface.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map This package contains implementations of theMapIterable
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.parallel This package contains classes which is used for parallel iteration through the containers.org.eclipse.collections.impl.partition.stack This package contains implementations of thePartitionStack
interface.org.eclipse.collections.impl.set org.eclipse.collections.impl.set.fixed This package contains implementations ofFixedSizeSet
.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet
.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategy
s.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.test This package containsSerializeTestHelper
andVerify
classes.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 Predicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type Predicate Modifier and Type Method Description boolean
ParallelIterable. allSatisfy(Predicate<? super T> predicate)
boolean
RichIterable. allSatisfy(Predicate<? super T> predicate)
Returns true if the predicate evaluates to true for every element of the iterable or if the iterable is empty.boolean
ParallelIterable. anySatisfy(Predicate<? super T> predicate)
boolean
RichIterable. anySatisfy(Predicate<? super T> predicate)
Returns true if the predicate evaluates to true for any element of the iterable.<V> LazyIterable<V>
LazyIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
Creates a deferred iterable for selecting and collecting elements from the current iterable.<V> ParallelIterable<V>
ParallelIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.<V> RichIterable<V>
RichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source collection, but only for those elements which return true upon evaluation of the predicate.<V,R extends java.util.Collection<V>>
RRichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
Same as the collectIf method with two parameters but uses the specified target collection for the results.int
ParallelIterable. count(Predicate<? super T> predicate)
int
RichIterable. count(Predicate<? super T> predicate)
Return the total number of elements that answer true to the specified predicate.T
ParallelIterable. detect(Predicate<? super T> predicate)
T
RichIterable. detect(Predicate<? super T> predicate)
Returns the first element of the iterable for which the predicate evaluates to true or null in the case where no element returns true.T
ParallelIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
default T
RichIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
Returns the first element of the iterable for which the predicate evaluates to true.java.util.Optional<T>
RichIterable. detectOptional(Predicate<? super T> predicate)
Returns the first element of the iterable for which the predicate evaluates to true as an Optional.LazyIterable<T>
LazyIterable. dropWhile(Predicate<? super T> predicate)
boolean
ParallelIterable. noneSatisfy(Predicate<? super T> predicate)
boolean
RichIterable. noneSatisfy(Predicate<? super T> predicate)
Returns true if the predicate evaluates to false for every element of the iterable or if the iterable is empty.PartitionIterable<T>
RichIterable. partition(Predicate<? super T> predicate)
Filters a collection into a PartitionedIterable based on the evaluation of the predicate.LazyIterable<T>
LazyIterable. reject(Predicate<? super T> predicate)
Creates a deferred iterable for rejecting elements from the current iterable.ParallelIterable<T>
ParallelIterable. reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.RichIterable<T>
RichIterable. reject(Predicate<? super T> predicate)
Returns all elements of the source collection that return false when evaluating of the predicate.<R extends java.util.Collection<T>>
RRichIterable. reject(Predicate<? super T> predicate, R target)
Same as the reject method with one parameter but uses the specified target collection for the results.LazyIterable<T>
LazyIterable. select(Predicate<? super T> predicate)
Creates a deferred iterable for selecting elements from the current iterable.ParallelIterable<T>
ParallelIterable. select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.RichIterable<T>
RichIterable. select(Predicate<? super T> predicate)
Returns all elements of the source collection that return true when evaluating the predicate.<R extends java.util.Collection<T>>
RRichIterable. select(Predicate<? super T> predicate, R target)
Same as the select method with one parameter but uses the specified target collection for the results.LazyIterable<T>
LazyIterable. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type Predicate Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableBag<V>
MutableBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelUnsortedBag<V>
ParallelUnsortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.<V> UnsortedBag<V>
UnsortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
PartitionBag<T>
Bag. partition(Predicate<? super T> predicate)
PartitionImmutableBag<T>
ImmutableBag. partition(Predicate<? super T> predicate)
PartitionImmutableBagIterable<T>
ImmutableBagIterable. partition(Predicate<? super T> predicate)
PartitionMutableBag<T>
MutableBag. partition(Predicate<? super T> predicate)
PartitionMutableBagIterable<T>
MutableBagIterable. partition(Predicate<? super T> predicate)
PartitionUnsortedBag<T>
UnsortedBag. partition(Predicate<? super T> predicate)
Bag<T>
Bag. reject(Predicate<? super T> predicate)
ImmutableBag<T>
ImmutableBag. reject(Predicate<? super T> predicate)
ImmutableBagIterable<T>
ImmutableBagIterable. reject(Predicate<? super T> predicate)
MutableBag<T>
MutableBag. reject(Predicate<? super T> predicate)
MutableBagIterable<T>
MutableBagIterable. reject(Predicate<? super T> predicate)
ParallelBag<T>
ParallelBag. reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.ParallelUnsortedBag<T>
ParallelUnsortedBag. reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.UnsortedBag<T>
UnsortedBag. reject(Predicate<? super T> predicate)
Bag<T>
Bag. select(Predicate<? super T> predicate)
ImmutableBag<T>
ImmutableBag. select(Predicate<? super T> predicate)
ImmutableBagIterable<T>
ImmutableBagIterable. select(Predicate<? super T> predicate)
MutableBag<T>
MutableBag. select(Predicate<? super T> predicate)
MutableBagIterable<T>
MutableBagIterable. select(Predicate<? super T> predicate)
ParallelBag<T>
ParallelBag. select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.ParallelUnsortedBag<T>
ParallelUnsortedBag. select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.UnsortedBag<T>
UnsortedBag. select(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type Predicate Modifier and Type Method Description <V> ImmutableList<V>
ImmutableSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableList<V>
MutableSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
ParallelSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.<V> ListIterable<V>
SortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
ImmutableSortedBag<T>
ImmutableSortedBag. dropWhile(Predicate<? super T> predicate)
MutableSortedBag<T>
MutableSortedBag. dropWhile(Predicate<? super T> predicate)
SortedBag<T>
SortedBag. dropWhile(Predicate<? super T> predicate)
PartitionImmutableSortedBag<T>
ImmutableSortedBag. partition(Predicate<? super T> predicate)
PartitionMutableSortedBag<T>
MutableSortedBag. partition(Predicate<? super T> predicate)
PartitionSortedBag<T>
SortedBag. partition(Predicate<? super T> predicate)
PartitionMutableSortedBag<T>
MutableSortedBag. partitionWhile(Predicate<? super T> predicate)
PartitionSortedBag<T>
SortedBag. partitionWhile(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableSortedBag. reject(Predicate<? super T> predicate)
MutableSortedBag<T>
MutableSortedBag. reject(Predicate<? super T> predicate)
ParallelSortedBag<T>
ParallelSortedBag. reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.SortedBag<T>
SortedBag. reject(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableSortedBag. select(Predicate<? super T> predicate)
MutableSortedBag<T>
MutableSortedBag. select(Predicate<? super T> predicate)
ParallelSortedBag<T>
ParallelSortedBag. select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.SortedBag<T>
SortedBag. select(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableSortedBag. takeWhile(Predicate<? super T> predicate)
MutableSortedBag<T>
MutableSortedBag. takeWhile(Predicate<? super T> predicate)
SortedBag<T>
SortedBag. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap with parameters of type Predicate Modifier and Type Method Description <V1> ImmutableBagIterable<V1>
ImmutableBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)
PartitionUnsortedSet<V>
BiMap. partition(Predicate<? super V> predicate)
PartitionImmutableSet<V>
ImmutableBiMap. partition(Predicate<? super V> predicate)
PartitionMutableSet<V>
MutableBiMap. partition(Predicate<? super V> predicate)
SetIterable<V>
BiMap. reject(Predicate<? super V> predicate)
ImmutableSet<V>
ImmutableBiMap. reject(Predicate<? super V> predicate)
MutableSet<V>
MutableBiMap. reject(Predicate<? super V> predicate)
SetIterable<V>
BiMap. select(Predicate<? super V> predicate)
ImmutableSet<V>
ImmutableBiMap. select(Predicate<? super V> predicate)
MutableSet<V>
MutableBiMap. select(Predicate<? super V> predicate)
-
Uses of Predicate in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type Predicate Modifier and Type Method Description <V> ImmutableCollection<V>
ImmutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableCollection<V>
MutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
Returns a new MutableCollection with the results of applying the specified function to each element of the source collection, but only for elements that evaluate to true for the specified predicate.PartitionImmutableCollection<T>
ImmutableCollection. partition(Predicate<? super T> predicate)
PartitionMutableCollection<T>
MutableCollection. partition(Predicate<? super T> predicate)
Filters a collection into a PartitionedIterable based on the evaluation of the predicate.ImmutableCollection<T>
ImmutableCollection. reject(Predicate<? super T> predicate)
MutableCollection<T>
MutableCollection. reject(Predicate<? super T> predicate)
Returns a MutableCollection with all elements that evaluate to false for the specified predicate.boolean
FixedSizeCollection. removeIf(Predicate<? super T> predicate)
boolean
MutableCollection. removeIf(Predicate<? super T> predicate)
Removes all elements in the collection that evaluate to true for the specified predicate.ImmutableCollection<T>
ImmutableCollection. select(Predicate<? super T> predicate)
MutableCollection<T>
MutableCollection. select(Predicate<? super T> predicate)
Returns a MutableCollection with all elements that evaluate to true for the specified predicate. -
Uses of Predicate in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type Predicate Modifier and Type Method Description <V> ImmutableList<V>
ImmutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ListIterable<V>
ListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
default <V> MutableList<V>
MutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
ParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.ImmutableList<T>
ImmutableList. dropWhile(Predicate<? super T> predicate)
ListIterable<T>
ListIterable. dropWhile(Predicate<? super T> predicate)
Returns the final elements that do not satisfy the Predicate.MutableList<T>
MutableList. dropWhile(Predicate<? super T> predicate)
PartitionImmutableList<T>
ImmutableList. partition(Predicate<? super T> predicate)
PartitionList<T>
ListIterable. partition(Predicate<? super T> predicate)
PartitionMutableList<T>
MutableList. partition(Predicate<? super T> predicate)
PartitionImmutableList<T>
ImmutableList. partitionWhile(Predicate<? super T> predicate)
PartitionList<T>
ListIterable. partitionWhile(Predicate<? super T> predicate)
Returns a Partition of the initial elements that satisfy the Predicate and the remaining elements.PartitionMutableList<T>
MutableList. partitionWhile(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableList. reject(Predicate<? super T> predicate)
ListIterable<T>
ListIterable. reject(Predicate<? super T> predicate)
default MutableList<T>
MutableList. reject(Predicate<? super T> predicate)
ParallelListIterable<T>
ParallelListIterable. reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.ImmutableList<T>
ImmutableList. select(Predicate<? super T> predicate)
ListIterable<T>
ListIterable. select(Predicate<? super T> predicate)
default MutableList<T>
MutableList. select(Predicate<? super T> predicate)
ParallelListIterable<T>
ParallelListIterable. select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.ImmutableList<T>
ImmutableList. takeWhile(Predicate<? super T> predicate)
ListIterable<T>
ListIterable. takeWhile(Predicate<? super T> predicate)
Returns the initial elements that satisfy the Predicate.MutableList<T>
MutableList. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type Predicate Modifier and Type Method Description <R> ImmutableBag<R>
ImmutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
<V1> ImmutableList<V1>
ImmutableOrderedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)
<R> MutableBag<R>
MutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
<V1> MutableList<V1>
MutableOrderedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)
<V1> ListIterable<V1>
OrderedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)
<V1> Bag<V1>
UnsortedMapIterable. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)
ImmutableOrderedMap<K,V>
ImmutableOrderedMap. dropWhile(Predicate<? super V> predicate)
MutableOrderedMap<K,V>
MutableOrderedMap. dropWhile(Predicate<? super V> predicate)
OrderedMap<K,V>
OrderedMap. dropWhile(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableMap. partition(Predicate<? super V> predicate)
PartitionImmutableCollection<V>
ImmutableMapIterable. partition(Predicate<? super V> predicate)
PartitionImmutableList<V>
ImmutableOrderedMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
MutableMap. partition(Predicate<? super V> predicate)
PartitionMutableCollection<V>
MutableMapIterable. partition(Predicate<? super V> predicate)
PartitionMutableList<V>
MutableOrderedMap. partition(Predicate<? super V> predicate)
PartitionList<V>
OrderedMap. partition(Predicate<? super V> predicate)
PartitionBag<V>
UnsortedMapIterable. partition(Predicate<? super V> predicate)
PartitionImmutableList<V>
ImmutableOrderedMap. partitionWhile(Predicate<? super V> predicate)
PartitionMutableList<V>
MutableOrderedMap. partitionWhile(Predicate<? super V> predicate)
PartitionList<V>
OrderedMap. partitionWhile(Predicate<? super V> predicate)
ImmutableBag<V>
ImmutableMap. reject(Predicate<? super V> predicate)
ImmutableCollection<V>
ImmutableMapIterable. reject(Predicate<? super V> predicate)
ImmutableList<V>
ImmutableOrderedMap. reject(Predicate<? super V> predicate)
MutableBag<V>
MutableMap. reject(Predicate<? super V> predicate)
MutableCollection<V>
MutableMapIterable. reject(Predicate<? super V> predicate)
MutableList<V>
MutableOrderedMap. reject(Predicate<? super V> predicate)
ListIterable<V>
OrderedMap. reject(Predicate<? super V> predicate)
Bag<V>
UnsortedMapIterable. reject(Predicate<? super V> predicate)
ImmutableBag<V>
ImmutableMap. select(Predicate<? super V> predicate)
ImmutableCollection<V>
ImmutableMapIterable. select(Predicate<? super V> predicate)
ImmutableList<V>
ImmutableOrderedMap. select(Predicate<? super V> predicate)
MutableBag<V>
MutableMap. select(Predicate<? super V> predicate)
MutableCollection<V>
MutableMapIterable. select(Predicate<? super V> predicate)
MutableList<V>
MutableOrderedMap. select(Predicate<? super V> predicate)
ListIterable<V>
OrderedMap. select(Predicate<? super V> predicate)
Bag<V>
UnsortedMapIterable. select(Predicate<? super V> predicate)
ImmutableOrderedMap<K,V>
ImmutableOrderedMap. takeWhile(Predicate<? super V> predicate)
MutableOrderedMap<K,V>
MutableOrderedMap. takeWhile(Predicate<? super V> predicate)
OrderedMap<K,V>
OrderedMap. takeWhile(Predicate<? super V> predicate)
-
Uses of Predicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type Predicate Modifier and Type Method Description <VV> ImmutableBag<VV>
ImmutablePrimitiveObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV> MutableBag<VV>
MutablePrimitiveObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV> Bag<VV>
PrimitiveObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
PartitionImmutableBag<V>
ImmutablePrimitiveObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
MutablePrimitiveObjectMap. partition(Predicate<? super V> predicate)
PartitionBag<V>
PrimitiveObjectMap. partition(Predicate<? super V> predicate)
ImmutableBag<V>
ImmutablePrimitiveObjectMap. reject(Predicate<? super V> predicate)
MutableBag<V>
MutablePrimitiveObjectMap. reject(Predicate<? super V> predicate)
Bag<V>
PrimitiveObjectMap. reject(Predicate<? super V> predicate)
ImmutableBag<V>
ImmutablePrimitiveObjectMap. select(Predicate<? super V> predicate)
MutableBag<V>
MutablePrimitiveObjectMap. select(Predicate<? super V> predicate)
Bag<V>
PrimitiveObjectMap. select(Predicate<? super V> predicate)
-
Uses of Predicate in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type Predicate Modifier and Type Method Description <R> ImmutableList<R>
ImmutableSortedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
<R> MutableList<R>
MutableSortedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
<V1> ListIterable<V1>
SortedMapIterable. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)
MutableSortedMap<K,V>
MutableSortedMap. dropWhile(Predicate<? super V> predicate)
SortedMapIterable<K,V>
SortedMapIterable. dropWhile(Predicate<? super V> predicate)
PartitionImmutableList<V>
ImmutableSortedMap. partition(Predicate<? super V> predicate)
PartitionMutableList<V>
MutableSortedMap. partition(Predicate<? super V> predicate)
PartitionList<V>
SortedMapIterable. partition(Predicate<? super V> predicate)
PartitionMutableList<V>
MutableSortedMap. partitionWhile(Predicate<? super V> predicate)
PartitionList<V>
SortedMapIterable. partitionWhile(Predicate<? super V> predicate)
ImmutableList<V>
ImmutableSortedMap. reject(Predicate<? super V> predicate)
MutableList<V>
MutableSortedMap. reject(Predicate<? super V> predicate)
ListIterable<V>
SortedMapIterable. reject(Predicate<? super V> predicate)
ImmutableList<V>
ImmutableSortedMap. select(Predicate<? super V> predicate)
MutableList<V>
MutableSortedMap. select(Predicate<? super V> predicate)
ListIterable<V>
SortedMapIterable. select(Predicate<? super V> predicate)
MutableSortedMap<K,V>
MutableSortedMap. takeWhile(Predicate<? super V> predicate)
SortedMapIterable<K,V>
SortedMapIterable. takeWhile(Predicate<? super V> predicate)
-
Uses of Predicate in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type Predicate Modifier and Type Method Description <V> OrderedIterable<V>
OrderedIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ReversibleIterable<V>
ReversibleIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
int
OrderedIterable. detectIndex(Predicate<? super T> predicate)
Returns the index of the first element of theOrderedIterable
for which thepredicate
evaluates to true.int
ReversibleIterable. detectLastIndex(Predicate<? super T> predicate)
Returns the index of the last element of theReversibleIterable
for which thepredicate
evaluates to true.OrderedIterable<T>
OrderedIterable. dropWhile(Predicate<? super T> predicate)
Returns the final elements that do not satisfy the Predicate.ReversibleIterable<T>
ReversibleIterable. dropWhile(Predicate<? super T> predicate)
Returns the final elements that do not satisfy the Predicate.SortedIterable<T>
SortedIterable. dropWhile(Predicate<? super T> predicate)
Returns the final elements that do not satisfy the Predicate.PartitionOrderedIterable<T>
OrderedIterable. partition(Predicate<? super T> predicate)
PartitionReversibleIterable<T>
ReversibleIterable. partition(Predicate<? super T> predicate)
PartitionSortedIterable<T>
SortedIterable. partition(Predicate<? super T> predicate)
PartitionOrderedIterable<T>
OrderedIterable. partitionWhile(Predicate<? super T> predicate)
Returns a Partition of the initial elements that satisfy the Predicate and the remaining elements.PartitionReversibleIterable<T>
ReversibleIterable. partitionWhile(Predicate<? super T> predicate)
PartitionSortedIterable<T>
SortedIterable. partitionWhile(Predicate<? super T> predicate)
Returns a Partition of the initial elements that satisfy the Predicate and the remaining elements.OrderedIterable<T>
OrderedIterable. reject(Predicate<? super T> predicate)
ReversibleIterable<T>
ReversibleIterable. reject(Predicate<? super T> predicate)
SortedIterable<T>
SortedIterable. reject(Predicate<? super T> predicate)
OrderedIterable<T>
OrderedIterable. select(Predicate<? super T> predicate)
ReversibleIterable<T>
ReversibleIterable. select(Predicate<? super T> predicate)
SortedIterable<T>
SortedIterable. select(Predicate<? super T> predicate)
OrderedIterable<T>
OrderedIterable. takeWhile(Predicate<? super T> predicate)
Returns the initial elements that satisfy the Predicate.ReversibleIterable<T>
ReversibleIterable. takeWhile(Predicate<? super T> predicate)
Returns the initial elements that satisfy the Predicate.SortedIterable<T>
SortedIterable. takeWhile(Predicate<? super T> predicate)
Returns the initial elements that satisfy the Predicate. -
Uses of Predicate in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type Predicate Modifier and Type Method Description <V> ImmutableSet<V>
ImmutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableSet<V>
MutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> UnsortedSetIterable<V>
UnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
PartitionImmutableSet<T>
ImmutableSet. partition(Predicate<? super T> predicate)
PartitionImmutableSetIterable<T>
ImmutableSetIterable. partition(Predicate<? super T> predicate)
PartitionMutableSet<T>
MutableSet. partition(Predicate<? super T> predicate)
PartitionMutableSetIterable<T>
MutableSetIterable. partition(Predicate<? super T> predicate)
PartitionSet<T>
SetIterable. partition(Predicate<? super T> predicate)
ImmutableSet<T>
ImmutableSet. reject(Predicate<? super T> predicate)
ImmutableSetIterable<T>
ImmutableSetIterable. reject(Predicate<? super T> predicate)
MutableSet<T>
MutableSet. reject(Predicate<? super T> predicate)
MutableSetIterable<T>
MutableSetIterable. reject(Predicate<? super T> predicate)
ParallelSetIterable<T>
ParallelSetIterable. reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.ParallelUnsortedSetIterable<T>
ParallelUnsortedSetIterable. reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.SetIterable<T>
SetIterable. reject(Predicate<? super T> predicate)
UnsortedSetIterable<T>
UnsortedSetIterable. reject(Predicate<? super T> predicate)
ImmutableSet<T>
ImmutableSet. select(Predicate<? super T> predicate)
ImmutableSetIterable<T>
ImmutableSetIterable. select(Predicate<? super T> predicate)
MutableSet<T>
MutableSet. select(Predicate<? super T> predicate)
MutableSetIterable<T>
MutableSetIterable. select(Predicate<? super T> predicate)
ParallelSetIterable<T>
ParallelSetIterable. select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.ParallelUnsortedSetIterable<T>
ParallelUnsortedSetIterable. select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.SetIterable<T>
SetIterable. select(Predicate<? super T> predicate)
UnsortedSetIterable<T>
UnsortedSetIterable. select(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type Predicate Modifier and Type Method Description <V> ImmutableList<V>
ImmutableSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableList<V>
MutableSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
ParallelSortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.<V> ListIterable<V>
SortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
ImmutableSortedSet<T>
ImmutableSortedSet. dropWhile(Predicate<? super T> predicate)
MutableSortedSet<T>
MutableSortedSet. dropWhile(Predicate<? super T> predicate)
SortedSetIterable<T>
SortedSetIterable. dropWhile(Predicate<? super T> predicate)
PartitionImmutableSortedSet<T>
ImmutableSortedSet. partition(Predicate<? super T> predicate)
PartitionMutableSortedSet<T>
MutableSortedSet. partition(Predicate<? super T> predicate)
PartitionSortedSet<T>
SortedSetIterable. partition(Predicate<? super T> predicate)
PartitionImmutableSortedSet<T>
ImmutableSortedSet. partitionWhile(Predicate<? super T> predicate)
PartitionMutableSortedSet<T>
MutableSortedSet. partitionWhile(Predicate<? super T> predicate)
PartitionSortedSet<T>
SortedSetIterable. partitionWhile(Predicate<? super T> predicate)
ImmutableSortedSet<T>
ImmutableSortedSet. reject(Predicate<? super T> predicate)
MutableSortedSet<T>
MutableSortedSet. reject(Predicate<? super T> predicate)
ParallelSortedSetIterable<T>
ParallelSortedSetIterable. reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.SortedSetIterable<T>
SortedSetIterable. reject(Predicate<? super T> predicate)
ImmutableSortedSet<T>
ImmutableSortedSet. select(Predicate<? super T> predicate)
MutableSortedSet<T>
MutableSortedSet. select(Predicate<? super T> predicate)
ParallelSortedSetIterable<T>
ParallelSortedSetIterable. select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.SortedSetIterable<T>
SortedSetIterable. select(Predicate<? super T> predicate)
ImmutableSortedSet<T>
ImmutableSortedSet. takeWhile(Predicate<? super T> predicate)
MutableSortedSet<T>
MutableSortedSet. takeWhile(Predicate<? super T> predicate)
SortedSetIterable<T>
SortedSetIterable. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type Predicate Modifier and Type Method Description <V> ImmutableStack<V>
ImmutableStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableStack<V>
MutableStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> StackIterable<V>
StackIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
ImmutableStack<T>
ImmutableStack. dropWhile(Predicate<? super T> predicate)
MutableStack<T>
MutableStack. dropWhile(Predicate<? super T> predicate)
StackIterable<T>
StackIterable. dropWhile(Predicate<? super T> predicate)
PartitionImmutableStack<T>
ImmutableStack. partition(Predicate<? super T> predicate)
PartitionMutableStack<T>
MutableStack. partition(Predicate<? super T> predicate)
PartitionStack<T>
StackIterable. partition(Predicate<? super T> predicate)
PartitionImmutableStack<T>
ImmutableStack. partitionWhile(Predicate<? super T> predicate)
PartitionMutableStack<T>
MutableStack. partitionWhile(Predicate<? super T> predicate)
PartitionStack<T>
StackIterable. partitionWhile(Predicate<? super T> predicate)
ImmutableStack<T>
ImmutableStack. reject(Predicate<? super T> predicate)
MutableStack<T>
MutableStack. reject(Predicate<? super T> predicate)
StackIterable<T>
StackIterable. reject(Predicate<? super T> predicate)
ImmutableStack<T>
ImmutableStack. select(Predicate<? super T> predicate)
MutableStack<T>
MutableStack. select(Predicate<? super T> predicate)
StackIterable<T>
StackIterable. select(Predicate<? super T> predicate)
ImmutableStack<T>
ImmutableStack. takeWhile(Predicate<? super T> predicate)
MutableStack<T>
MutableStack. takeWhile(Predicate<? super T> predicate)
StackIterable<T>
StackIterable. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type Predicate Modifier and Type Method Description boolean
AbstractRichIterable. allSatisfy(Predicate<? super T> predicate)
boolean
UnmodifiableRichIterable. allSatisfy(Predicate<? super T> predicate)
boolean
AbstractRichIterable. anySatisfy(Predicate<? super T> predicate)
boolean
UnmodifiableRichIterable. anySatisfy(Predicate<? super T> predicate)
<V,R extends java.util.Collection<V>>
RAbstractRichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
<V> RichIterable<V>
UnmodifiableRichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RUnmodifiableRichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
int
AbstractRichIterable. count(Predicate<? super T> predicate)
int
UnmodifiableRichIterable. count(Predicate<? super T> predicate)
T
AbstractRichIterable. detect(Predicate<? super T> predicate)
T
UnmodifiableRichIterable. detect(Predicate<? super T> predicate)
T
UnmodifiableRichIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
java.util.Optional<T>
AbstractRichIterable. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
UnmodifiableRichIterable. detectOptional(Predicate<? super T> predicate)
boolean
AbstractRichIterable. noneSatisfy(Predicate<? super T> predicate)
boolean
UnmodifiableRichIterable. noneSatisfy(Predicate<? super T> predicate)
PartitionIterable<T>
UnmodifiableRichIterable. partition(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RAbstractRichIterable. reject(Predicate<? super T> predicate, R target)
RichIterable<T>
UnmodifiableRichIterable. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RUnmodifiableRichIterable. reject(Predicate<? super T> predicate, R target)
<R extends java.util.Collection<T>>
RAbstractRichIterable. select(Predicate<? super T> predicate, R target)
RichIterable<T>
UnmodifiableRichIterable. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RUnmodifiableRichIterable. select(Predicate<? super T> predicate, R target)
-
Uses of Predicate in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with parameters of type Predicate Modifier and Type Method Description <V,R extends java.util.Collection<V>>
RAbstractBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
int
AbstractBag. count(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RAbstractBag. reject(Predicate<? super T> predicate, R target)
<R extends java.util.Collection<T>>
RAbstractBag. select(Predicate<? super T> predicate, R target)
-
Uses of Predicate in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type Predicate Modifier and Type Method Description boolean
ImmutableArrayBag. allSatisfy(Predicate<? super T> predicate)
boolean
ImmutableEmptyBag. allSatisfy(Predicate<? super T> predicate)
boolean
ImmutableHashBag. allSatisfy(Predicate<? super T> predicate)
boolean
ImmutableSingletonBag. allSatisfy(Predicate<? super T> predicate)
boolean
ImmutableArrayBag. anySatisfy(Predicate<? super T> predicate)
boolean
ImmutableEmptyBag. anySatisfy(Predicate<? super T> predicate)
boolean
ImmutableHashBag. anySatisfy(Predicate<? super T> predicate)
boolean
ImmutableSingletonBag. anySatisfy(Predicate<? super T> predicate)
<V> ImmutableBag<V>
ImmutableArrayBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ImmutableBag<V>
ImmutableEmptyBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ImmutableBag<V>
ImmutableHashBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableHashBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
<V> ImmutableBag<V>
ImmutableSingletonBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableSingletonBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
int
ImmutableEmptyBag. count(Predicate<? super T> predicate)
int
ImmutableHashBag. count(Predicate<? super T> predicate)
int
ImmutableSingletonBag. count(Predicate<? super T> predicate)
T
ImmutableArrayBag. detect(Predicate<? super T> predicate)
T
ImmutableEmptyBag. detect(Predicate<? super T> predicate)
T
ImmutableHashBag. detect(Predicate<? super T> predicate)
T
ImmutableSingletonBag. detect(Predicate<? super T> predicate)
T
ImmutableEmptyBag. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
T
ImmutableHashBag. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
T
ImmutableSingletonBag. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
java.util.Optional<T>
ImmutableArrayBag. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
ImmutableEmptyBag. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
ImmutableHashBag. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
ImmutableSingletonBag. detectOptional(Predicate<? super T> predicate)
private ImmutableBag<T>
ImmutableSingletonBag. emptyIfMatchesOrThis(Predicate<java.lang.Object> predicate)
boolean
ImmutableArrayBag. noneSatisfy(Predicate<? super T> predicate)
boolean
ImmutableEmptyBag. noneSatisfy(Predicate<? super T> predicate)
boolean
ImmutableHashBag. noneSatisfy(Predicate<? super T> predicate)
boolean
ImmutableSingletonBag. noneSatisfy(Predicate<? super T> predicate)
PartitionImmutableBag<T>
AbstractImmutableBag. partition(Predicate<? super T> predicate)
PartitionImmutableBag<T>
ImmutableEmptyBag. partition(Predicate<? super T> predicate)
PartitionImmutableBag<T>
ImmutableHashBag. partition(Predicate<? super T> predicate)
ImmutableBag<T>
ImmutableArrayBag. reject(Predicate<? super T> predicate)
ImmutableBag<T>
ImmutableEmptyBag. reject(Predicate<? super T> predicate)
ImmutableBag<T>
ImmutableHashBag. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RImmutableHashBag. reject(Predicate<? super T> predicate, R target)
ImmutableBag<T>
ImmutableSingletonBag. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RImmutableSingletonBag. reject(Predicate<? super T> predicate, R target)
ImmutableBag<T>
ImmutableArrayBag. select(Predicate<? super T> predicate)
ImmutableBag<T>
ImmutableEmptyBag. select(Predicate<? super T> predicate)
ImmutableBag<T>
ImmutableHashBag. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RImmutableHashBag. select(Predicate<? super T> predicate, R target)
ImmutableBag<T>
ImmutableSingletonBag. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RImmutableSingletonBag. select(Predicate<? super T> predicate, R target)
-
Uses of Predicate in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type Predicate Modifier and Type Method Description boolean
AbstractMutableBagIterable. allSatisfy(Predicate<? super T> predicate)
boolean
AbstractMutableBagIterable. anySatisfy(Predicate<? super T> predicate)
<V> MutableBag<V>
AbstractMutableBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableBag<V>
MultiReaderHashBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableBag<V>
MultiReaderHashBag.UntouchableMutableBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableBag<V>
SynchronizedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableBag<V>
UnmodifiableBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
T
AbstractMutableBagIterable. detect(Predicate<? super T> predicate)
T
AbstractMutableBagIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
java.util.Optional<T>
AbstractMutableBagIterable. detectOptional(Predicate<? super T> predicate)
boolean
AbstractMutableBagIterable. noneSatisfy(Predicate<? super T> predicate)
PartitionMutableBag<T>
AbstractMutableBag. partition(Predicate<? super T> predicate)
PartitionMutableBag<T>
MultiReaderHashBag. partition(Predicate<? super T> predicate)
PartitionMutableBag<T>
MultiReaderHashBag.UntouchableMutableBag. partition(Predicate<? super T> predicate)
PartitionMutableBag<T>
SynchronizedBag. partition(Predicate<? super T> predicate)
PartitionMutableBag<T>
UnmodifiableBag. partition(Predicate<? super T> predicate)
MutableBag<T>
AbstractMutableBag. reject(Predicate<? super T> predicate)
MutableBag<T>
MultiReaderHashBag. reject(Predicate<? super T> predicate)
MutableBag<T>
MultiReaderHashBag.UntouchableMutableBag. reject(Predicate<? super T> predicate)
MutableBag<T>
SynchronizedBag. reject(Predicate<? super T> predicate)
MutableBag<T>
UnmodifiableBag. reject(Predicate<? super T> predicate)
boolean
AbstractHashBag. removeIf(Predicate<? super T> predicate)
MutableBag<T>
AbstractMutableBag. select(Predicate<? super T> predicate)
MutableBag<T>
MultiReaderHashBag. select(Predicate<? super T> predicate)
MutableBag<T>
MultiReaderHashBag.UntouchableMutableBag. select(Predicate<? super T> predicate)
MutableBag<T>
SynchronizedBag. select(Predicate<? super T> predicate)
MutableBag<T>
UnmodifiableBag. select(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type Predicate Modifier and Type Method Description boolean
ImmutableSortedBagImpl. allSatisfy(Predicate<? super T> predicate)
boolean
ImmutableSortedBagImpl. anySatisfy(Predicate<? super T> predicate)
<V> ImmutableList<V>
AbstractImmutableSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
int
ImmutableEmptySortedBag. count(Predicate<? super T> predicate)
T
ImmutableSortedBagImpl. detect(Predicate<? super T> predicate)
int
ImmutableEmptySortedBag. detectIndex(Predicate<? super T> predicate)
int
ImmutableSortedBagImpl. detectIndex(Predicate<? super T> predicate)
int
AbstractImmutableSortedBag. detectLastIndex(Predicate<? super T> predicate)
private int
ImmutableSortedBagImpl. detectNotIndex(Predicate<? super T> predicate)
java.util.Optional<T>
ImmutableSortedBagImpl. detectOptional(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. dropWhile(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableSortedBagImpl. dropWhile(Predicate<? super T> predicate)
boolean
ImmutableSortedBagImpl. noneSatisfy(Predicate<? super T> predicate)
PartitionImmutableSortedBag<T>
AbstractImmutableSortedBag. partition(Predicate<? super T> predicate)
PartitionImmutableSortedBag<T>
ImmutableEmptySortedBag. partitionWhile(Predicate<? super T> predicate)
PartitionImmutableSortedBag<T>
ImmutableSortedBagImpl. partitionWhile(Predicate<? super T> predicate)
ImmutableSortedBag<T>
AbstractImmutableSortedBag. reject(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. reject(Predicate<? super T> predicate)
ImmutableSortedBag<T>
AbstractImmutableSortedBag. select(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. select(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. takeWhile(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableSortedBagImpl. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type Predicate Modifier and Type Method Description <V> MutableList<V>
AbstractMutableSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableList<V>
SynchronizedSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableList<V>
UnmodifiableSortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
int
SynchronizedSortedBag. detectIndex(Predicate<? super T> predicate)
int
TreeBag. detectIndex(Predicate<? super T> predicate)
int
UnmodifiableSortedBag. detectIndex(Predicate<? super T> predicate)
int
AbstractMutableSortedBag. detectLastIndex(Predicate<? super T> predicate)
int
SynchronizedSortedBag. detectLastIndex(Predicate<? super T> predicate)
int
UnmodifiableSortedBag. detectLastIndex(Predicate<? super T> predicate)
MutableSortedBag<T>
AbstractMutableSortedBag. dropWhile(Predicate<? super T> predicate)
MutableSortedBag<T>
SynchronizedSortedBag. dropWhile(Predicate<? super T> predicate)
MutableSortedBag<T>
UnmodifiableSortedBag. dropWhile(Predicate<? super T> predicate)
PartitionMutableSortedBag<T>
AbstractMutableSortedBag. partition(Predicate<? super T> predicate)
PartitionMutableSortedBag<T>
SynchronizedSortedBag. partition(Predicate<? super T> predicate)
PartitionMutableSortedBag<T>
UnmodifiableSortedBag. partition(Predicate<? super T> predicate)
PartitionMutableSortedBag<T>
AbstractMutableSortedBag. partitionWhile(Predicate<? super T> predicate)
PartitionMutableSortedBag<T>
SynchronizedSortedBag. partitionWhile(Predicate<? super T> predicate)
PartitionMutableSortedBag<T>
UnmodifiableSortedBag. partitionWhile(Predicate<? super T> predicate)
MutableSortedBag<T>
AbstractMutableSortedBag. reject(Predicate<? super T> predicate)
MutableSortedBag<T>
SynchronizedSortedBag. reject(Predicate<? super T> predicate)
MutableSortedBag<T>
UnmodifiableSortedBag. reject(Predicate<? super T> predicate)
boolean
TreeBag. removeIf(Predicate<? super T> predicate)
MutableSortedBag<T>
AbstractMutableSortedBag. select(Predicate<? super T> predicate)
MutableSortedBag<T>
SynchronizedSortedBag. select(Predicate<? super T> predicate)
MutableSortedBag<T>
UnmodifiableSortedBag. select(Predicate<? super T> predicate)
MutableSortedBag<T>
AbstractMutableSortedBag. takeWhile(Predicate<? super T> predicate)
MutableSortedBag<T>
SynchronizedSortedBag. takeWhile(Predicate<? super T> predicate)
MutableSortedBag<T>
UnmodifiableSortedBag. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type Predicate Modifier and Type Method Description boolean
AbstractBiMap. allSatisfy(Predicate<? super V> predicate)
boolean
AbstractBiMap. anySatisfy(Predicate<? super V> predicate)
<VV,R extends java.util.Collection<VV>>
RAbstractBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
int
AbstractBiMap. count(Predicate<? super V> predicate)
V
AbstractBiMap. detect(Predicate<? super V> predicate)
V
AbstractBiMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
java.util.Optional<V>
AbstractBiMap. detectOptional(Predicate<? super V> predicate)
boolean
AbstractBiMap. noneSatisfy(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RAbstractBiMap. reject(Predicate<? super V> predicate, R target)
<R extends java.util.Collection<V>>
RAbstractBiMap. select(Predicate<? super V> predicate, R target)
-
Uses of Predicate in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type Predicate Modifier and Type Method Description <VV> ImmutableBag<VV>
AbstractImmutableBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
PartitionImmutableSet<V>
AbstractImmutableBiMap. partition(Predicate<? super V> predicate)
ImmutableSet<V>
AbstractImmutableBiMap. reject(Predicate<? super V> predicate)
ImmutableSet<V>
AbstractImmutableBiMap. select(Predicate<? super V> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type Predicate Modifier and Type Method Description boolean
UnmodifiableBiMap. allSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableBiMap. anySatisfy(Predicate<? super V> predicate)
<VV> MutableBag<VV>
AbstractMutableBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<V1> RichIterable<V1>
UnmodifiableBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)
<VV,R extends java.util.Collection<VV>>
RUnmodifiableBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
int
UnmodifiableBiMap. count(Predicate<? super V> predicate)
V
UnmodifiableBiMap. detect(Predicate<? super V> predicate)
V
UnmodifiableBiMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
java.util.Optional<V>
UnmodifiableBiMap. detectOptional(Predicate<? super V> predicate)
boolean
UnmodifiableBiMap. noneSatisfy(Predicate<? super V> predicate)
PartitionMutableSet<V>
AbstractMutableBiMap. partition(Predicate<? super V> predicate)
PartitionMutableSet<V>
SynchronizedBiMap. partition(Predicate<? super V> predicate)
PartitionMutableSet<V>
UnmodifiableBiMap. partition(Predicate<? super V> predicate)
MutableSet<V>
AbstractMutableBiMap. reject(Predicate<? super V> predicate)
MutableSet<V>
SynchronizedBiMap. reject(Predicate<? super V> predicate)
MutableSet<V>
UnmodifiableBiMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableBiMap. reject(Predicate<? super V> predicate, R target)
MutableSet<V>
AbstractMutableBiMap. select(Predicate<? super V> predicate)
MutableSet<V>
SynchronizedBiMap. select(Predicate<? super V> predicate)
MutableSet<V>
UnmodifiableBiMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableBiMap. select(Predicate<? super V> predicate, R target)
-
Uses of Predicate in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement Predicate Modifier and Type Class Description private static class
IntegerPredicates.IntegerIsEven
private static class
IntegerPredicates.IntegerIsNegative
private static class
IntegerPredicates.IntegerIsOdd
private static class
IntegerPredicates.IntegerIsPositive
private static class
IntegerPredicates.IntegerIsZero
private static class
LongPredicates.LongIsEven
private static class
LongPredicates.LongIsNegative
private static class
LongPredicates.LongIsOdd
private static class
LongPredicates.LongIsPositive
private static class
LongPredicates.LongIsZero
class
Predicates<T>
The Predicates class can be used to build common Predicates for use in methods such as detect, select and reject which are found on Iterate, MapIterate, and ArrayIterate classes.private static class
Predicates.AbstractIterablePredicate<T>
static class
Predicates.AllSatisfy<T>
private static class
Predicates.AlwaysFalse
private static class
Predicates.AlwaysTrue
private static class
Predicates.AndIterablePredicate<T>
private static class
Predicates.AndPredicate<T>
static class
Predicates.AnySatisfy<T>
private static class
Predicates.AssignableFromPredicate
private static class
Predicates.AttributeFalse<T>
protected static class
Predicates.AttributePredicate<T,V>
private static class
Predicates.AttributeTrue<T>
private static class
Predicates.BetweenExclusive<T extends java.lang.Comparable<? super T>>
private static class
Predicates.BetweenInclusive<T extends java.lang.Comparable<? super T>>
private static class
Predicates.BetweenInclusiveFrom<T extends java.lang.Comparable<? super T>>
private static class
Predicates.BetweenInclusiveTo<T extends java.lang.Comparable<? super T>>
private static class
Predicates.BindPredicate2<T,P>
private static class
Predicates.CompareToPredicate<T extends java.lang.Comparable<? super T>>
private static class
Predicates.EqualPredicate
private static class
Predicates.FalseEquals
protected static class
Predicates.GreaterThanOrEqualPredicate<T extends java.lang.Comparable<? super T>>
protected static class
Predicates.GreaterThanPredicate<T extends java.lang.Comparable<? super T>>
private static class
Predicates.IdentityPredicate
private static class
Predicates.InCollectionPredicate
private static class
Predicates.InSetIterablePredicate
private static class
Predicates.InSetPredicate
private static class
Predicates.InstanceOfPredicate
private static class
Predicates.IsNull
protected static class
Predicates.LessThanOrEqualPredicate<T extends java.lang.Comparable<? super T>>
protected static class
Predicates.LessThanPredicate<T extends java.lang.Comparable<? super T>>
private static class
Predicates.NeitherPredicate<T>
private static class
Predicates.NoneOfIterablePredicate<T>
static class
Predicates.NoneSatisfy<T>
private static class
Predicates.NotEqualPredicate
private static class
Predicates.NotIdentityPredicate
private static class
Predicates.NotInCollectionPredicate
private static class
Predicates.NotInSetIterablePredicate
private static class
Predicates.NotInSetPredicate
private static class
Predicates.NotInstanceOfPredicate
private static class
Predicates.NotNull
private static class
Predicates.NotPredicate<T>
private static class
Predicates.OrIterablePredicate<T>
private static class
Predicates.OrPredicate<T>
private static class
Predicates.PredicateAdapter<T>
protected static class
Predicates.RangePredicate<T extends java.lang.Comparable<? super T>>
private static class
Predicates.SubclassPredicate
private static class
Predicates.SuperclassPredicate
private static class
Predicates.SynchronizedPredicate<T>
private static class
Predicates.ThrowingPredicateAdapter<T>
private static class
Predicates.TrueEquals
private static class
StringPredicates.ContainsCharacter
private static class
StringPredicates.ContainsString
private static class
StringPredicates.Empty
private static class
StringPredicates.EndsWith
private static class
StringPredicates.EqualsIgnoreCase
private static class
StringPredicates.GreaterThan
private static class
StringPredicates.GreaterThanOrEqualTo
private static class
StringPredicates.HasDigits
private static class
StringPredicates.HasLetters
private static class
StringPredicates.HasLettersAndDigits
private static class
StringPredicates.HasLettersOrDigits
private static class
StringPredicates.HasLowercase
private static class
StringPredicates.HasSpaces
private static class
StringPredicates.HasUndefined
private static class
StringPredicates.HasUppercase
private static class
StringPredicates.IsAlpha
private static class
StringPredicates.IsAlphanumeric
private static class
StringPredicates.IsBlank
private static class
StringPredicates.IsNumeric
private static class
StringPredicates.LessThan
private static class
StringPredicates.LessThanOrEqualTo
private static class
StringPredicates.MatchesRegex
private static class
StringPredicates.NotBlank
private static class
StringPredicates.NotContainsString
private static class
StringPredicates.NotEmpty
private static class
StringPredicates.Size
private static class
StringPredicates.StartsWith
Fields in org.eclipse.collections.impl.block.factory declared as Predicate Modifier and Type Field Description private Predicate<? super T>
Predicates.AndPredicate. left
private Predicate<? super T>
Predicates.NeitherPredicate. left
private Predicate<? super T>
Predicates.OrPredicate. left
private Predicate<? super T>
Predicates.AllSatisfy. predicate
private Predicate<? super T>
Predicates.AnySatisfy. predicate
protected Predicate<? super V>
Predicates.AttributePredicate. predicate
private Predicate<? super T>
Predicates.NoneSatisfy. predicate
private Predicate<T>
Predicates.NotPredicate. predicate
private Predicate<T>
Predicates.PredicateAdapter. predicate
private Predicate<T>
Predicates.SynchronizedPredicate. predicate
private Predicate<? super T>
Predicates.AndPredicate. right
private Predicate<? super T>
Predicates.NeitherPredicate. right
private Predicate<? super T>
Predicates.OrPredicate. right
Fields in org.eclipse.collections.impl.block.factory with type parameters of type Predicate Modifier and Type Field Description protected java.lang.Iterable<? extends Predicate<? super T>>
Predicates.AbstractIterablePredicate. predicates
Methods in org.eclipse.collections.impl.block.factory that return Predicate Modifier and Type Method Description static <P,T>
Predicate<T>Predicates. bind(Predicate2<? super T,? super P> predicate, P parameter)
static <T> Predicate<T>
Predicates. cast(Predicate<T> predicate)
Allows a Java 8 lambda or method reference to be used in a method taking a predicate without requiring an actual cast.static <T> Predicate<T>
Predicates. synchronizedEach(Predicate<T> predicate)
static <T> Predicate<T>
Predicates. throwing(ThrowingPredicate<T> throwingPredicate)
Allows a lambda or anonymous inner class that needs to throw a checked exception to be safely wrapped as a Predicate that will throw a RuntimeException, wrapping the checked exception that is the cause.static <T> Predicate<T>
Predicates. throwing(ThrowingPredicate<T> throwingPredicate, Function2<T,? super java.lang.Throwable,? extends java.lang.RuntimeException> rethrow)
Allows a lambda or anonymous inner class that needs to throw a checked exception to be safely wrapped as a Predicate that will throw a user specified RuntimeException based on the provided function.Methods in org.eclipse.collections.impl.block.factory with parameters of type Predicate Modifier and Type Method Description static <T> Predicates<T>
Predicates. adapt(Predicate<T> predicate)
static <T> Predicates<java.lang.Iterable<T>>
Predicates. allSatisfy(Predicate<? super T> predicate)
Predicates<T>
Predicates. and(Predicate<? super T> op)
static <T> Predicates<T>
Predicates. and(Predicate<? super T>... predicates)
static <T> Predicates<T>
Predicates. and(Predicate<? super T> predicate1, Predicate<? super T> predicate2)
static <T> Predicates<java.lang.Iterable<T>>
Predicates. anySatisfy(Predicate<? super T> predicate)
static <T,V>
Predicates<T>Predicates. attributeAllSatisfy(Function<? super T,? extends java.lang.Iterable<V>> function, Predicate<? super V> predicate)
static <T,V>
Predicates<T>Predicates. attributeAnySatisfy(Function<? super T,? extends java.lang.Iterable<V>> function, Predicate<? super V> predicate)
static <T,V>
Predicates<T>Predicates. attributeNoneSatisfy(Function<? super T,? extends java.lang.Iterable<V>> function, Predicate<? super V> predicate)
static <T,V>
Predicates<T>Predicates. attributePredicate(Function<? super T,? extends V> function, Predicate<? super V> predicate)
static <T extends java.lang.Comparable<? super T>,V>
CaseFunction<T,V>Functions. caseDefault(Function<? super T,? extends V> defaultFunction, Predicate<? super T> predicate, Function<? super T,? extends V> function)
static <T> CaseProcedure<T>
Procedures. caseDefault(Procedure<? super T> defaultProcedure, Predicate<? super T> predicate, Procedure<? super T> procedure)
static <T> Predicate<T>
Predicates. cast(Predicate<T> predicate)
Allows a Java 8 lambda or method reference to be used in a method taking a predicate without requiring an actual cast.static <T,V>
Function<T,V>Functions. ifElse(Predicate<? super T> predicate, Function<? super T,? extends V> trueFunction, Function<? super T,? extends V> falseFunction)
static <T> Procedure<T>
Procedures. ifElse(Predicate<? super T> predicate, Procedure<? super T> trueProcedure, Procedure<? super T> falseProcedure)
static <T,V>
Function<T,V>Functions. ifTrue(Predicate<? super T> predicate, Function<? super T,? extends V> function)
static <T> Procedure<T>
Procedures. ifTrue(Predicate<? super T> predicate, Procedure<? super T> block)
static <T> Predicates<T>
Predicates. neither(Predicate<? super T> operation1, Predicate<? super T> operation2)
static <T> Predicates<T>
Predicates. noneOf(Predicate<? super T>... operations)
static <T> Predicates<java.lang.Iterable<T>>
Predicates. noneSatisfy(Predicate<? super T> predicate)
static <T> Predicates<T>
Predicates. not(Predicate<T> predicate)
Predicates<T>
Predicates. or(Predicate<? super T> op)
static <T> Predicates<T>
Predicates. or(Predicate<? super T>... predicates)
static <T> Predicates<T>
Predicates. or(Predicate<? super T> predicate1, Predicate<? super T> predicate2)
static <T> Predicate<T>
Predicates. synchronizedEach(Predicate<T> predicate)
Method parameters in org.eclipse.collections.impl.block.factory with type arguments of type Predicate Modifier and Type Method Description static <T> Predicates<T>
Predicates. and(java.lang.Iterable<? extends Predicate<? super T>> predicates)
static <T> Predicates<T>
Predicates. noneOf(java.lang.Iterable<? extends Predicate<? super T>> operations)
static <T> Predicates<T>
Predicates. or(java.lang.Iterable<? extends Predicate<? super T>> predicates)
Constructors in org.eclipse.collections.impl.block.factory with parameters of type Predicate Constructor Description AllSatisfy(Predicate<? super T> predicate)
AndPredicate(Predicate<? super T> one, Predicate<? super T> two)
AnySatisfy(Predicate<? super T> predicate)
AttributePredicate(Function<? super T,? extends V> newFunction, Predicate<? super V> newPredicate)
NeitherPredicate(Predicate<? super T> one, Predicate<? super T> two)
NoneSatisfy(Predicate<? super T> predicate)
NotPredicate(Predicate<T> newPredicate)
OrPredicate(Predicate<? super T> one, Predicate<? super T> two)
PredicateAdapter(Predicate<T> newPredicate)
SynchronizedPredicate(Predicate<T> predicate)
Constructor parameters in org.eclipse.collections.impl.block.factory with type arguments of type Predicate Constructor Description AbstractIterablePredicate(java.lang.Iterable<? extends Predicate<? super T>> predicates)
AndIterablePredicate(java.lang.Iterable<? extends Predicate<? super T>> predicates)
NoneOfIterablePredicate(java.lang.Iterable<? extends Predicate<? super T>> predicates)
OrIterablePredicate(java.lang.Iterable<? extends Predicate<? super T>> predicates)
-
Uses of Predicate in org.eclipse.collections.impl.block.function
Fields in org.eclipse.collections.impl.block.function declared as Predicate Modifier and Type Field Description private Predicate<? super T>
IfFunction. predicate
Fields in org.eclipse.collections.impl.block.function with type parameters of type Predicate Modifier and Type Field Description private MutableList<Pair<Predicate<? super T>,Function<? super T,? extends V>>>
CaseFunction. predicateFunctions
Methods in org.eclipse.collections.impl.block.function with parameters of type Predicate Modifier and Type Method Description CaseFunction<T,V>
CaseFunction. addCase(Predicate<? super T> predicate, Function<? super T,? extends V> function)
Constructors in org.eclipse.collections.impl.block.function with parameters of type Predicate Constructor Description IfFunction(Predicate<? super T> newPredicate, Function<? super T,? extends V> function)
IfFunction(Predicate<? super T> predicate, Function<? super T,? extends V> function, Function<? super T,? extends V> elseFunction)
-
Uses of Predicate in org.eclipse.collections.impl.block.predicate
Classes in org.eclipse.collections.impl.block.predicate that implement Predicate Modifier and Type Class Description class
DropIterablePredicate<T>
class
DropWhileIterablePredicate<T>
class
MapEntryPredicate<T1,T2>
class
PairPredicate<T1,T2>
Fields in org.eclipse.collections.impl.block.predicate declared as Predicate Modifier and Type Field Description private Predicate<? super T>
DropWhileIterablePredicate. predicate
Constructors in org.eclipse.collections.impl.block.predicate with parameters of type Predicate Constructor Description DropWhileIterablePredicate(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.block.predicate.checked
Classes in org.eclipse.collections.impl.block.predicate.checked that implement Predicate Modifier and Type Class Description class
CheckedPredicate<T>
-
Uses of Predicate in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as Predicate Modifier and Type Field Description private Predicate<? super T>
AtomicCountProcedure. predicate
private Predicate<? super T>
CollectIfProcedure. predicate
private Predicate<? super T>
CountProcedure. predicate
private Predicate<? super T>
FastListCollectIfProcedure. predicate
private Predicate<? super T>
FastListRejectProcedure. predicate
private Predicate<? super T>
FastListSelectProcedure. predicate
private Predicate<? super T>
IfObjectIntProcedure. predicate
private Predicate<? super T>
IfProcedure. predicate
private Predicate<? super T>
IfProcedureWith. predicate
private Predicate<? super T>
PartitionProcedure. predicate
private Predicate<? super T>
RejectProcedure. predicate
private Predicate<? super T>
SelectProcedure. predicate
Fields in org.eclipse.collections.impl.block.procedure with type parameters of type Predicate Modifier and Type Field Description private java.util.List<Pair<Predicate<? super T>,Procedure<? super T>>>
CaseProcedure. predicateProcedures
Methods in org.eclipse.collections.impl.block.procedure with parameters of type Predicate Modifier and Type Method Description CaseProcedure<T>
CaseProcedure. addCase(Predicate<? super T> predicate, Procedure<? super T> procedure)
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type Predicate Constructor Description AtomicCountProcedure(Predicate<? super T> predicate)
CollectIfProcedure(int taskSize, Function<? super T,? extends V> function, Predicate<? super T> predicate)
CollectIfProcedure(java.util.Collection<V> targetCollection, Function<? super T,? extends V> function, Predicate<? super T> predicate)
CountProcedure(Predicate<? super T> newPredicate)
FastListCollectIfProcedure(FastList<V> targetCollection, Function<? super T,? extends V> function, Predicate<? super T> predicate)
FastListRejectProcedure(Predicate<? super T> newPredicate, FastList<T> targetCollection)
FastListSelectProcedure(Predicate<? super T> newPredicate, FastList<T> targetCollection)
IfObjectIntProcedure(Predicate<? super T> newPredicate, ObjectIntProcedure<? super T> objectIntProcedure)
IfProcedure(Predicate<? super T> predicate, Procedure<? super T> procedure)
IfProcedure(Predicate<? super T> predicate, Procedure<? super T> procedure, Procedure<? super T> elseProcedure)
IfProcedureWith(Predicate<? super T> newPredicate, Procedure2<? super T,? super P> procedure)
PartitionProcedure(Predicate<? super T> predicate, PartitionMutableCollection<T> partitionMutableCollection)
RejectProcedure(Predicate<? super T> newPredicate, java.util.Collection<T> targetCollection)
SelectProcedure(Predicate<? super T> newPredicate, java.util.Collection<T> targetCollection)
-
Uses of Predicate in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type Predicate Modifier and Type Method Description boolean
AbstractSynchronizedRichIterable. allSatisfy(Predicate<? super T> predicate)
boolean
AbstractSynchronizedRichIterable. anySatisfy(Predicate<? super T> predicate)
<V> RichIterable<V>
AbstractSynchronizedRichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RAbstractSynchronizedRichIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
int
AbstractSynchronizedRichIterable. count(Predicate<? super T> predicate)
T
AbstractSynchronizedRichIterable. detect(Predicate<? super T> predicate)
T
AbstractSynchronizedRichIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
java.util.Optional<T>
AbstractSynchronizedRichIterable. detectOptional(Predicate<? super T> predicate)
boolean
AbstractSynchronizedRichIterable. noneSatisfy(Predicate<? super T> predicate)
PartitionIterable<T>
AbstractSynchronizedRichIterable. partition(Predicate<? super T> predicate)
RichIterable<T>
AbstractSynchronizedRichIterable. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RAbstractSynchronizedRichIterable. reject(Predicate<? super T> predicate, R target)
RichIterable<T>
AbstractSynchronizedRichIterable. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RAbstractSynchronizedRichIterable. select(Predicate<? super T> predicate, R target)
-
Uses of Predicate in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type Predicate Modifier and Type Method Description boolean
AbstractCollectionAdapter. allSatisfy(Predicate<? super T> predicate)
boolean
AbstractMultiReaderMutableCollection. allSatisfy(Predicate<? super T> predicate)
boolean
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. allSatisfy(Predicate<? super T> predicate)
boolean
AbstractUnmodifiableMutableCollection. allSatisfy(Predicate<? super T> predicate)
boolean
AbstractCollectionAdapter. anySatisfy(Predicate<? super T> predicate)
boolean
AbstractMultiReaderMutableCollection. anySatisfy(Predicate<? super T> predicate)
boolean
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. anySatisfy(Predicate<? super T> predicate)
boolean
AbstractUnmodifiableMutableCollection. anySatisfy(Predicate<? super T> predicate)
<V> MutableCollection<V>
AbstractCollectionAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RAbstractCollectionAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
<V,R extends java.util.Collection<V>>
RAbstractMultiReaderMutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
<V,R extends java.util.Collection<V>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
<V> MutableCollection<V>
AbstractSynchronizedMutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableCollection<V>
AbstractUnmodifiableMutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RAbstractUnmodifiableMutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
int
AbstractCollectionAdapter. count(Predicate<? super T> predicate)
int
AbstractMultiReaderMutableCollection. count(Predicate<? super T> predicate)
int
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. count(Predicate<? super T> predicate)
int
AbstractUnmodifiableMutableCollection. count(Predicate<? super T> predicate)
T
AbstractCollectionAdapter. detect(Predicate<? super T> predicate)
T
AbstractMultiReaderMutableCollection. detect(Predicate<? super T> predicate)
T
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. detect(Predicate<? super T> predicate)
T
AbstractUnmodifiableMutableCollection. detect(Predicate<? super T> predicate)
T
AbstractCollectionAdapter. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
T
AbstractMultiReaderMutableCollection. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
T
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
T
AbstractUnmodifiableMutableCollection. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
java.util.Optional<T>
AbstractCollectionAdapter. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
AbstractMultiReaderMutableCollection. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
AbstractUnmodifiableMutableCollection. detectOptional(Predicate<? super T> predicate)
boolean
AbstractCollectionAdapter. noneSatisfy(Predicate<? super T> predicate)
boolean
AbstractMultiReaderMutableCollection. noneSatisfy(Predicate<? super T> predicate)
boolean
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. noneSatisfy(Predicate<? super T> predicate)
boolean
AbstractUnmodifiableMutableCollection. noneSatisfy(Predicate<? super T> predicate)
PartitionMutableCollection<T>
AbstractCollectionAdapter. partition(Predicate<? super T> predicate)
PartitionMutableCollection<T>
AbstractSynchronizedMutableCollection. partition(Predicate<? super T> predicate)
PartitionMutableCollection<T>
AbstractUnmodifiableMutableCollection. partition(Predicate<? super T> predicate)
MutableCollection<T>
AbstractCollectionAdapter. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RAbstractCollectionAdapter. reject(Predicate<? super T> predicate, R target)
<R extends java.util.Collection<T>>
RAbstractMultiReaderMutableCollection. reject(Predicate<? super T> predicate, R target)
<R extends java.util.Collection<T>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. reject(Predicate<? super T> predicate, R target)
MutableCollection<T>
AbstractSynchronizedMutableCollection. reject(Predicate<? super T> predicate)
MutableCollection<T>
AbstractUnmodifiableMutableCollection. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RAbstractUnmodifiableMutableCollection. reject(Predicate<? super T> predicate, R target)
boolean
AbstractCollectionAdapter. removeIf(Predicate<? super T> predicate)
boolean
AbstractMultiReaderMutableCollection. removeIf(Predicate<? super T> predicate)
boolean
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. removeIf(Predicate<? super T> predicate)
boolean
AbstractMutableCollection. removeIf(Predicate<? super T> predicate)
boolean
AbstractSynchronizedMutableCollection. removeIf(Predicate<? super T> predicate)
boolean
AbstractUnmodifiableMutableCollection. removeIf(Predicate<? super T> predicate)
MutableCollection<T>
AbstractCollectionAdapter. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RAbstractCollectionAdapter. select(Predicate<? super T> predicate, R target)
<R extends java.util.Collection<T>>
RAbstractMultiReaderMutableCollection. select(Predicate<? super T> predicate, R target)
<R extends java.util.Collection<T>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. select(Predicate<? super T> predicate, R target)
MutableCollection<T>
AbstractSynchronizedMutableCollection. select(Predicate<? super T> predicate)
MutableCollection<T>
AbstractUnmodifiableMutableCollection. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RAbstractUnmodifiableMutableCollection. select(Predicate<? super T> predicate, R target)
-
Uses of Predicate in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with parameters of type Predicate Modifier and Type Method Description 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,R extends java.util.Collection<T>>
java.util.stream.Collector<T,?,R>Collectors2. reject(Predicate<? super T> predicate, java.util.function.Supplier<R> supplier)
Returns all elements of the stream that return false when evaluating the predicate.static <T,R extends java.util.Collection<T>>
java.util.stream.Collector<T,?,R>Collectors2. select(Predicate<? super T> predicate, java.util.function.Supplier<R> supplier)
Returns all elements of the stream that return true when evaluating the predicate. -
Uses of Predicate in org.eclipse.collections.impl.factory
Fields in org.eclipse.collections.impl.factory declared as Predicate Modifier and Type Field Description private static Predicate<java.util.Set<?>>
Sets. HAS_NON_NULL_COMPARATOR
private static Predicate<java.util.Set<?>>
Sets. INSTANCE_OF_SORTED_SET_PREDICATE
-
Uses of Predicate in org.eclipse.collections.impl.forkjoin
Methods in org.eclipse.collections.impl.forkjoin with parameters of type Predicate Modifier and Type Method Description static <T,V>
java.util.Collection<V>FJIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function)
Same effect asIterate.collectIf(Iterable, Predicate, Function)
, but executed in parallel batches.static <T,V>
java.util.Collection<V>FJIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function, boolean allowReorderedResult)
Same effect asIterate.collectIf(Iterable, Predicate, Function)
, but executed in parallel batches, and with potentially reordered results.static <T,V,R extends java.util.Collection<V>>
RFJIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function, R target, boolean allowReorderedResult)
Same effect asIterate.collectIf(Iterable, Predicate, Function)
, but executed in parallel batches, and writing output into the specified collection.static <T,V,R extends java.util.Collection<V>>
RFJIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function, R target, int batchSize, java.util.concurrent.ForkJoinPool executor, boolean allowReorderedResult)
static <T> int
FJIterate. count(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Same effect asIterate.count(Iterable, Predicate)
, but executed in parallel batches.static <T> int
FJIterate. count(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, int batchSize, java.util.concurrent.ForkJoinPool executor)
Same effect asIterate.count(Iterable, Predicate)
, but executed in parallel batches.static <T> java.util.Collection<T>
FJIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Same effect asIterate.reject(Iterable, Predicate)
, but executed in parallel batches.static <T> java.util.Collection<T>
FJIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, boolean allowReorderedResult)
Same effect asIterate.reject(Iterable, Predicate)
, but executed in parallel batches, and with a potentially reordered result.static <T,R extends java.util.Collection<T>>
RFJIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, boolean allowReorderedResult)
Same effect asIterate.reject(Iterable, Predicate)
, but executed in parallel batches, and writing output into the specified collection.static <T,R extends java.util.Collection<T>>
RFJIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, int batchSize, java.util.concurrent.ForkJoinPool executor, boolean allowReorderedResult)
static <T> java.util.Collection<T>
FJIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Same effect asIterate.select(Iterable, Predicate)
, but executed in parallel batches.static <T> java.util.Collection<T>
FJIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, boolean allowReorderedResult)
Same effect asIterate.select(Iterable, Predicate)
, but executed in parallel batches, and with a potentially reordered result.static <T,R extends java.util.Collection<T>>
RFJIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, boolean allowReorderedResult)
Same effect asIterate.select(Iterable, Predicate)
, but executed in parallel batches, and writing output into the specified collection.static <T,R extends java.util.Collection<T>>
RFJIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, int batchSize, java.util.concurrent.ForkJoinPool executor, boolean allowReorderedResult)
Same effect asIterate.select(Iterable, Predicate)
, but executed in parallel batches, and writing output into the specified collection. -
Uses of Predicate in org.eclipse.collections.impl.lazy
Classes in org.eclipse.collections.impl.lazy that implement Predicate Modifier and Type Class Description (package private) class
AllSatisfyPredicate<T>
private static class
CollectIterable.AttributePredicate<T,V>
Fields in org.eclipse.collections.impl.lazy declared as Predicate Modifier and Type Field Description private Predicate<? super T>
AllSatisfyPredicate. left
private Predicate<? super V>
CollectIterable.AttributePredicate. predicate
private Predicate<? super T>
DropWhileIterable. predicate
private Predicate<? super T>
RejectIterable. predicate
private Predicate<? super T>
SelectIterable. predicate
private Predicate<? super T>
TakeWhileIterable. predicate
private Predicate<? super T>
AllSatisfyPredicate. right
Methods in org.eclipse.collections.impl.lazy with parameters of type Predicate Modifier and Type Method Description boolean
CollectIterable. allSatisfy(Predicate<? super V> predicate)
boolean
CompositeIterable. allSatisfy(Predicate<? super E> predicate)
boolean
DistinctIterable. allSatisfy(Predicate<? super T> predicate)
boolean
DropIterable. allSatisfy(Predicate<? super T> predicate)
boolean
DropWhileIterable. allSatisfy(Predicate<? super T> predicate)
boolean
FlatCollectIterable. allSatisfy(Predicate<? super V> predicate)
boolean
LazyIterableAdapter. allSatisfy(Predicate<? super T> predicate)
boolean
RejectIterable. allSatisfy(Predicate<? super T> predicate)
boolean
SelectInstancesOfIterable. allSatisfy(Predicate<? super T> predicate)
boolean
SelectIterable. allSatisfy(Predicate<? super T> predicate)
boolean
TapIterable. allSatisfy(Predicate<? super T> predicate)
boolean
CollectIterable. anySatisfy(Predicate<? super V> predicate)
boolean
CompositeIterable. anySatisfy(Predicate<? super E> predicate)
boolean
DistinctIterable. anySatisfy(Predicate<? super T> predicate)
boolean
DropIterable. anySatisfy(Predicate<? super T> predicate)
boolean
DropWhileIterable. anySatisfy(Predicate<? super T> predicate)
boolean
FlatCollectIterable. anySatisfy(Predicate<? super V> predicate)
boolean
LazyIterableAdapter. anySatisfy(Predicate<? super T> predicate)
boolean
RejectIterable. anySatisfy(Predicate<? super T> predicate)
boolean
SelectInstancesOfIterable. anySatisfy(Predicate<? super T> predicate)
boolean
SelectIterable. anySatisfy(Predicate<? super T> predicate)
boolean
TapIterable. anySatisfy(Predicate<? super T> predicate)
<V> LazyIterable<V>
AbstractLazyIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> LazyIterable<V>
LazyIterableAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
V
CollectIterable. detect(Predicate<? super V> predicate)
E
CompositeIterable. detect(Predicate<? super E> predicate)
T
DistinctIterable. detect(Predicate<? super T> predicate)
T
DropIterable. detect(Predicate<? super T> predicate)
T
DropWhileIterable. detect(Predicate<? super T> predicate)
V
FlatCollectIterable. detect(Predicate<? super V> predicate)
T
LazyIterableAdapter. detect(Predicate<? super T> predicate)
T
RejectIterable. detect(Predicate<? super T> predicate)
T
SelectInstancesOfIterable. detect(Predicate<? super T> predicate)
T
SelectIterable. detect(Predicate<? super T> predicate)
T
TapIterable. detect(Predicate<? super T> predicate)
java.util.Optional<V>
CollectIterable. detectOptional(Predicate<? super V> predicate)
java.util.Optional<E>
CompositeIterable. detectOptional(Predicate<? super E> predicate)
java.util.Optional<T>
DistinctIterable. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
DropIterable. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
DropWhileIterable. detectOptional(Predicate<? super T> predicate)
java.util.Optional<V>
FlatCollectIterable. detectOptional(Predicate<? super V> predicate)
java.util.Optional<T>
LazyIterableAdapter. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
RejectIterable. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
SelectInstancesOfIterable. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
SelectIterable. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
TapIterable. detectOptional(Predicate<? super T> predicate)
LazyIterable<T>
AbstractLazyIterable. dropWhile(Predicate<? super T> predicate)
LazyIterable<T>
LazyIterableAdapter. dropWhile(Predicate<? super T> predicate)
boolean
CollectIterable. noneSatisfy(Predicate<? super V> predicate)
boolean
CompositeIterable. noneSatisfy(Predicate<? super E> predicate)
boolean
DistinctIterable. noneSatisfy(Predicate<? super T> predicate)
boolean
DropIterable. noneSatisfy(Predicate<? super T> predicate)
boolean
DropWhileIterable. noneSatisfy(Predicate<? super T> predicate)
boolean
FlatCollectIterable. noneSatisfy(Predicate<? super V> predicate)
boolean
LazyIterableAdapter. noneSatisfy(Predicate<? super T> predicate)
boolean
RejectIterable. noneSatisfy(Predicate<? super T> predicate)
boolean
SelectInstancesOfIterable. noneSatisfy(Predicate<? super T> predicate)
boolean
SelectIterable. noneSatisfy(Predicate<? super T> predicate)
boolean
TapIterable. noneSatisfy(Predicate<? super T> predicate)
PartitionMutableList<T>
AbstractLazyIterable. partition(Predicate<? super T> predicate)
LazyIterable<T>
AbstractLazyIterable. reject(Predicate<? super T> predicate)
LazyIterable<T>
LazyIterableAdapter. reject(Predicate<? super T> predicate)
LazyIterable<T>
AbstractLazyIterable. select(Predicate<? super T> predicate)
LazyIterable<T>
LazyIterableAdapter. select(Predicate<? super T> predicate)
LazyIterable<T>
AbstractLazyIterable. takeWhile(Predicate<? super T> predicate)
LazyIterable<T>
LazyIterableAdapter. takeWhile(Predicate<? super T> predicate)
Constructors in org.eclipse.collections.impl.lazy with parameters of type Predicate Constructor Description AllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right)
AttributePredicate(Function<? super T,? extends V> newFunction, Predicate<? super V> newPredicate)
DropWhileIterable(java.lang.Iterable<T> newAdapted, Predicate<? super T> predicate)
RejectIterable(java.lang.Iterable<T> newAdapted, Predicate<? super T> newPredicate)
SelectIterable(java.lang.Iterable<T> newAdapted, Predicate<? super T> newPredicate)
TakeWhileIterable(java.lang.Iterable<T> newAdapted, Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.lazy.iterator
Fields in org.eclipse.collections.impl.lazy.iterator declared as Predicate Modifier and Type Field Description private Predicate<? super T>
SelectIterator. predicate
private Predicate<? super T>
TakeWhileIterator. predicate
Constructors in org.eclipse.collections.impl.lazy.iterator with parameters of type Predicate Constructor Description SelectIterator(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
SelectIterator(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
TakeWhileIterator(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
TakeWhileIterator(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.lazy.parallel
Classes in org.eclipse.collections.impl.lazy.parallel that implement Predicate Modifier and Type Class Description private static class
ParallelDistinctIterable.DistinctAndPredicate<T>
private static class
ParallelDistinctIterable.DistinctOrPredicate<T>
private static class
ParallelSelectIterable.SelectAllSatisfyPredicate<T>
Fields in org.eclipse.collections.impl.lazy.parallel declared as Predicate Modifier and Type Field Description private Predicate<? super T>
ParallelSelectIterable.SelectAllSatisfyPredicate. left
private Predicate<? super T>
ParallelDistinctIterable.DistinctAndPredicate. predicate
private Predicate<? super T>
ParallelDistinctIterable.DistinctOrPredicate. predicate
private Predicate<? super T>
ParallelSelectIterable. predicate
private Predicate<? super T>
ParallelSelectIterable.SelectAllSatisfyPredicate. right
Methods in org.eclipse.collections.impl.lazy.parallel with parameters of type Predicate Modifier and Type Method Description boolean
AbstractMultiReaderParallelIterable. allSatisfy(Predicate<? super T> predicate)
protected static <T> boolean
AbstractParallelIterable. allSatisfy(AbstractParallelIterable<T,? extends RootBatch<T>> parallelIterable, Predicate<? super T> predicate)
boolean
AbstractSynchronizedParallelIterable. allSatisfy(Predicate<? super T> predicate)
boolean
NonParallelIterable. allSatisfy(Predicate<? super T> predicate)
boolean
ParallelDistinctIterable. allSatisfy(Predicate<? super T> predicate)
boolean
ParallelSelectIterable. allSatisfy(Predicate<? super T> predicate)
boolean
RootBatch. allSatisfy(Predicate<? super T> predicate)
boolean
AbstractMultiReaderParallelIterable. anySatisfy(Predicate<? super T> predicate)
protected static <T> boolean
AbstractParallelIterable. anySatisfy(AbstractParallelIterable<T,? extends RootBatch<T>> parallelIterable, Predicate<? super T> predicate)
boolean
AbstractSynchronizedParallelIterable. anySatisfy(Predicate<? super T> predicate)
boolean
NonParallelIterable. anySatisfy(Predicate<? super T> predicate)
boolean
ParallelDistinctIterable. anySatisfy(Predicate<? super T> predicate)
boolean
ParallelSelectIterable. anySatisfy(Predicate<? super T> predicate)
boolean
RootBatch. anySatisfy(Predicate<? super T> predicate)
<V> ParallelIterable<V>
AbstractParallelIterableImpl. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelIterable<V>
MultiReaderParallelIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelIterable<V>
SynchronizedParallelIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
int
AbstractBatch. count(Predicate<? super T> predicate)
int
AbstractMultiReaderParallelIterable. count(Predicate<? super T> predicate)
int
AbstractParallelIterable. count(Predicate<? super T> predicate)
int
AbstractSynchronizedParallelIterable. count(Predicate<? super T> predicate)
int
Batch. count(Predicate<? super T> predicate)
int
NonParallelIterable. count(Predicate<? super T> predicate)
T
AbstractMultiReaderParallelIterable. detect(Predicate<? super T> predicate)
protected static <T> T
AbstractParallelIterable. detect(AbstractParallelIterable<T,? extends RootBatch<T>> parallelIterable, Predicate<? super T> predicate)
T
AbstractSynchronizedParallelIterable. detect(Predicate<? super T> predicate)
T
NonParallelIterable. detect(Predicate<? super T> predicate)
T
ParallelDistinctIterable. detect(Predicate<? super T> predicate)
T
ParallelSelectIterable. detect(Predicate<? super T> predicate)
T
RootBatch. detect(Predicate<? super T> predicate)
T
AbstractMultiReaderParallelIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
T
AbstractParallelIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
T
AbstractSynchronizedParallelIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
T
NonParallelIterable. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
boolean
AbstractMultiReaderParallelIterable. noneSatisfy(Predicate<? super T> predicate)
boolean
AbstractParallelIterable. noneSatisfy(Predicate<? super T> predicate)
boolean
AbstractSynchronizedParallelIterable. noneSatisfy(Predicate<? super T> predicate)
boolean
NonParallelIterable. noneSatisfy(Predicate<? super T> predicate)
ParallelIterable<T>
AbstractParallelIterableImpl. reject(Predicate<? super T> predicate)
ParallelIterable<T>
MultiReaderParallelIterable. reject(Predicate<? super T> predicate)
ParallelIterable<T>
SynchronizedParallelIterable. reject(Predicate<? super T> predicate)
ParallelIterable<T>
AbstractParallelIterableImpl. select(Predicate<? super T> predicate)
Batch<T>
Batch. select(Predicate<? super T> predicate)
ParallelIterable<T>
MultiReaderParallelIterable. select(Predicate<? super T> predicate)
OrderedBatch<T>
OrderedBatch. select(Predicate<? super T> predicate)
ParallelIterable<T>
SynchronizedParallelIterable. select(Predicate<? super T> predicate)
Constructors in org.eclipse.collections.impl.lazy.parallel with parameters of type Predicate Constructor Description DistinctAndPredicate(Predicate<? super T> predicate)
DistinctOrPredicate(Predicate<? super T> predicate)
ParallelSelectIterable(AbstractParallelIterable<T,? extends Batch<T>> parallelIterable, Predicate<? super T> predicate)
SelectAllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right)
-
Uses of Predicate in org.eclipse.collections.impl.lazy.parallel.bag
Classes in org.eclipse.collections.impl.lazy.parallel.bag that implement Predicate Modifier and Type Class Description private static class
ParallelSelectUnsortedBag.SelectAllSatisfyPredicate<T>
Fields in org.eclipse.collections.impl.lazy.parallel.bag declared as Predicate Modifier and Type Field Description private Predicate<? super T>
ParallelSelectUnsortedBag.SelectAllSatisfyPredicate. left
private Predicate<? super T>
ParallelSelectUnsortedBag. predicate
private Predicate<? super T>
SelectUnsortedBagBatch.IfProcedureWithOccurrences. predicate
private Predicate<? super T>
SelectUnsortedBagBatch. predicate
private Predicate<? super T>
ParallelSelectUnsortedBag.SelectAllSatisfyPredicate. right
Methods in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type Predicate Modifier and Type Method Description boolean
ParallelCollectUnsortedBag. allSatisfy(Predicate<? super V> predicate)
boolean
ParallelSelectUnsortedBag. allSatisfy(Predicate<? super T> predicate)
boolean
ParallelCollectUnsortedBag. anySatisfy(Predicate<? super V> predicate)
boolean
ParallelSelectUnsortedBag. anySatisfy(Predicate<? super T> predicate)
<V> ParallelUnsortedBag<V>
AbstractParallelUnsortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelUnsortedBag<V>
NonParallelUnsortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
V
ParallelCollectUnsortedBag. detect(Predicate<? super V> predicate)
T
ParallelSelectUnsortedBag. detect(Predicate<? super T> predicate)
ParallelUnsortedBag<T>
AbstractParallelUnsortedBag. reject(Predicate<? super T> predicate)
ParallelUnsortedBag<T>
NonParallelUnsortedBag. reject(Predicate<? super T> predicate)
ParallelUnsortedBag<T>
AbstractParallelUnsortedBag. select(Predicate<? super T> predicate)
UnsortedBagBatch<V>
CollectUnsortedBagBatch. select(Predicate<? super V> predicate)
UnsortedBagBatch<V>
FlatCollectUnsortedBagBatch. select(Predicate<? super V> predicate)
ParallelUnsortedBag<T>
NonParallelUnsortedBag. select(Predicate<? super T> predicate)
UnsortedBagBatch<T>
SelectUnsortedBagBatch. select(Predicate<? super T> predicate)
UnsortedBagBatch<T>
UnsortedBagBatch. select(Predicate<? super T> predicate)
Constructors in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type Predicate Constructor Description IfProcedureWithOccurrences(Predicate<? super T> predicate, ObjectIntProcedure<? super T> procedure)
ParallelSelectUnsortedBag(AbstractParallelUnsortedBag<T,? extends UnsortedBagBatch<T>> parallelIterable, Predicate<? super T> predicate)
SelectAllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right)
SelectUnsortedBagBatch(UnsortedBagBatch<T> unsortedBagBatch, Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.lazy.parallel.list
Classes in org.eclipse.collections.impl.lazy.parallel.list that implement Predicate Modifier and Type Class Description private static class
ParallelDistinctListIterable.DistinctAndPredicate<T>
private static class
ParallelDistinctListIterable.DistinctOrPredicate<T>
private static class
ParallelSelectListIterable.SelectAllSatisfyPredicate<T>
Fields in org.eclipse.collections.impl.lazy.parallel.list declared as Predicate Modifier and Type Field Description private Predicate<? super T>
ParallelSelectListIterable.SelectAllSatisfyPredicate. left
private Predicate<? super T>
ParallelDistinctListIterable.DistinctAndPredicate. predicate
private Predicate<? super T>
ParallelDistinctListIterable.DistinctOrPredicate. predicate
private Predicate<? super T>
ParallelSelectListIterable. predicate
private Predicate<? super T>
SelectListBatch. predicate
private Predicate<? super T>
ParallelSelectListIterable.SelectAllSatisfyPredicate. right
Methods in org.eclipse.collections.impl.lazy.parallel.list with parameters of type Predicate Modifier and Type Method Description boolean
ListIterableBatch. allSatisfy(Predicate<? super T> predicate)
boolean
ListIterableParallelIterable. allSatisfy(Predicate<? super T> predicate)
boolean
ParallelCollectListIterable. allSatisfy(Predicate<? super V> predicate)
boolean
ParallelDistinctListIterable. allSatisfy(Predicate<? super T> predicate)
boolean
ParallelFlatCollectListIterable. allSatisfy(Predicate<? super V> predicate)
boolean
ParallelSelectListIterable. allSatisfy(Predicate<? super T> predicate)
boolean
ListIterableBatch. anySatisfy(Predicate<? super T> predicate)
boolean
ListIterableParallelIterable. anySatisfy(Predicate<? super T> predicate)
boolean
ParallelCollectListIterable. anySatisfy(Predicate<? super V> predicate)
boolean
ParallelDistinctListIterable. anySatisfy(Predicate<? super T> predicate)
boolean
ParallelFlatCollectListIterable. anySatisfy(Predicate<? super V> predicate)
boolean
ParallelSelectListIterable. anySatisfy(Predicate<? super T> predicate)
<V> ParallelListIterable<V>
AbstractParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
MultiReaderParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
NonParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
SynchronizedParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
int
ListIterableBatch. count(Predicate<? super T> predicate)
T
ListIterableBatch. detect(Predicate<? super T> predicate)
T
ListIterableParallelIterable. detect(Predicate<? super T> predicate)
V
ParallelCollectListIterable. detect(Predicate<? super V> predicate)
T
ParallelDistinctListIterable. detect(Predicate<? super T> predicate)
V
ParallelFlatCollectListIterable. detect(Predicate<? super V> predicate)
T
ParallelSelectListIterable. detect(Predicate<? super T> predicate)
ParallelListIterable<T>
AbstractParallelListIterable. reject(Predicate<? super T> predicate)
ParallelListIterable<T>
MultiReaderParallelListIterable. reject(Predicate<? super T> predicate)
ParallelListIterable<T>
NonParallelListIterable. reject(Predicate<? super T> predicate)
ParallelListIterable<T>
SynchronizedParallelListIterable. reject(Predicate<? super T> predicate)
ParallelListIterable<T>
AbstractParallelListIterable. select(Predicate<? super T> predicate)
ListBatch<V>
CollectListBatch. select(Predicate<? super V> predicate)
UnsortedSetBatch<T>
DistinctBatch. select(Predicate<? super T> predicate)
ListBatch<V>
FlatCollectListBatch. select(Predicate<? super V> predicate)
ListBatch<T>
ListBatch. select(Predicate<? super T> predicate)
ListBatch<T>
ListIterableBatch. select(Predicate<? super T> predicate)
ParallelListIterable<T>
MultiReaderParallelListIterable. select(Predicate<? super T> predicate)
ParallelListIterable<T>
NonParallelListIterable. select(Predicate<? super T> predicate)
ListBatch<T>
SelectListBatch. select(Predicate<? super T> predicate)
ParallelListIterable<T>
SynchronizedParallelListIterable. select(Predicate<? super T> predicate)
Constructors in org.eclipse.collections.impl.lazy.parallel.list with parameters of type Predicate Constructor Description DistinctAndPredicate(Predicate<? super T> predicate)
DistinctOrPredicate(Predicate<? super T> predicate)
ParallelSelectListIterable(AbstractParallelListIterable<T,? extends ListBatch<T>> parallelIterable, Predicate<? super T> predicate)
SelectAllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right)
SelectListBatch(ListBatch<T> listBatch, Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.lazy.parallel.set
Classes in org.eclipse.collections.impl.lazy.parallel.set that implement Predicate Modifier and Type Class Description private static class
ParallelSelectUnsortedSetIterable.SelectAllSatisfyPredicate<T>
Fields in org.eclipse.collections.impl.lazy.parallel.set declared as Predicate Modifier and Type Field Description private Predicate<? super T>
ParallelSelectUnsortedSetIterable.SelectAllSatisfyPredicate. left
private Predicate<? super T>
ParallelSelectUnsortedSetIterable. predicate
private Predicate<? super T>
SelectUnsortedSetBatch. predicate
private Predicate<? super T>
ParallelSelectUnsortedSetIterable.SelectAllSatisfyPredicate. right
Methods in org.eclipse.collections.impl.lazy.parallel.set with parameters of type Predicate Modifier and Type Method Description boolean
ParallelCollectIterable. allSatisfy(Predicate<? super V> predicate)
boolean
ParallelFlatCollectIterable. allSatisfy(Predicate<? super V> predicate)
boolean
ParallelSelectUnsortedSetIterable. allSatisfy(Predicate<? super T> predicate)
boolean
ParallelCollectIterable. anySatisfy(Predicate<? super V> predicate)
boolean
ParallelFlatCollectIterable. anySatisfy(Predicate<? super V> predicate)
boolean
ParallelSelectUnsortedSetIterable. anySatisfy(Predicate<? super T> predicate)
<V> ParallelIterable<V>
AbstractParallelUnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelIterable<V>
MultiReaderParallelUnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelIterable<V>
NonParallelUnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelIterable<V>
SynchronizedParallelUnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
V
ParallelCollectIterable. detect(Predicate<? super V> predicate)
V
ParallelFlatCollectIterable. detect(Predicate<? super V> predicate)
T
ParallelSelectUnsortedSetIterable. detect(Predicate<? super T> predicate)
ParallelUnsortedSetIterable<T>
AbstractParallelUnsortedSetIterable. reject(Predicate<? super T> predicate)
ParallelUnsortedSetIterable<T>
MultiReaderParallelUnsortedSetIterable. reject(Predicate<? super T> predicate)
ParallelUnsortedSetIterable<T>
NonParallelUnsortedSetIterable. reject(Predicate<? super T> predicate)
ParallelUnsortedSetIterable<T>
SynchronizedParallelUnsortedSetIterable. reject(Predicate<? super T> predicate)
ParallelUnsortedSetIterable<T>
AbstractParallelUnsortedSetIterable. select(Predicate<? super T> predicate)
UnsortedSetBatch<V>
CollectUnsortedSetBatch. select(Predicate<? super V> predicate)
ParallelUnsortedSetIterable<T>
MultiReaderParallelUnsortedSetIterable. select(Predicate<? super T> predicate)
ParallelUnsortedSetIterable<T>
NonParallelUnsortedSetIterable. select(Predicate<? super T> predicate)
UnsortedSetBatch<T>
SelectUnsortedSetBatch. select(Predicate<? super T> predicate)
ParallelUnsortedSetIterable<T>
SynchronizedParallelUnsortedSetIterable. select(Predicate<? super T> predicate)
UnsortedSetBatch<T>
UnsortedSetBatch. select(Predicate<? super T> predicate)
Constructors in org.eclipse.collections.impl.lazy.parallel.set with parameters of type Predicate Constructor Description ParallelSelectUnsortedSetIterable(AbstractParallelUnsortedSetIterable<T,? extends UnsortedSetBatch<T>> delegate, Predicate<? super T> predicate)
SelectAllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right)
SelectUnsortedSetBatch(UnsortedSetBatch<T> unsortedSetBatch, Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.lazy.parallel.set.sorted
Classes in org.eclipse.collections.impl.lazy.parallel.set.sorted that implement Predicate Modifier and Type Class Description private static class
ParallelSelectSortedSetIterable.SelectAllSatisfyPredicate<T>
Fields in org.eclipse.collections.impl.lazy.parallel.set.sorted declared as Predicate Modifier and Type Field Description private Predicate<? super T>
ParallelSelectSortedSetIterable.SelectAllSatisfyPredicate. left
private Predicate<? super T>
ParallelSelectSortedSetIterable. predicate
private Predicate<? super T>
SelectSortedSetBatch. predicate
private Predicate<? super T>
ParallelSelectSortedSetIterable.SelectAllSatisfyPredicate. right
Methods in org.eclipse.collections.impl.lazy.parallel.set.sorted with parameters of type Predicate Modifier and Type Method Description boolean
ParallelSelectSortedSetIterable. allSatisfy(Predicate<? super T> predicate)
boolean
ParallelSelectSortedSetIterable. anySatisfy(Predicate<? super T> predicate)
<V> ParallelListIterable<V>
AbstractParallelSortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
NonParallelSortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
SynchronizedParallelSortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
T
ParallelSelectSortedSetIterable. detect(Predicate<? super T> predicate)
ParallelSortedSetIterable<T>
AbstractParallelSortedSetIterable. reject(Predicate<? super T> predicate)
ParallelSortedSetIterable<T>
NonParallelSortedSetIterable. reject(Predicate<? super T> predicate)
ParallelSortedSetIterable<T>
SynchronizedParallelSortedSetIterable. reject(Predicate<? super T> predicate)
ParallelSortedSetIterable<T>
AbstractParallelSortedSetIterable. select(Predicate<? super T> predicate)
ListBatch<V>
CollectSortedSetBatch. select(Predicate<? super V> predicate)
ListBatch<V>
FlatCollectSortedSetBatch. select(Predicate<? super V> predicate)
ParallelSortedSetIterable<T>
NonParallelSortedSetIterable. select(Predicate<? super T> predicate)
SortedSetBatch<T>
SelectSortedSetBatch. select(Predicate<? super T> predicate)
SortedSetBatch<T>
SortedSetBatch. select(Predicate<? super T> predicate)
ParallelSortedSetIterable<T>
SynchronizedParallelSortedSetIterable. select(Predicate<? super T> predicate)
Constructors in org.eclipse.collections.impl.lazy.parallel.set.sorted with parameters of type Predicate Constructor Description ParallelSelectSortedSetIterable(AbstractParallelSortedSetIterable<T,? extends SortedSetBatch<T>> parallelIterable, Predicate<? super T> predicate)
SelectAllSatisfyPredicate(Predicate<? super T> left, Predicate<? super T> right)
SelectSortedSetBatch(SortedSetBatch<T> sortedSetBatch, Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type Predicate Modifier and Type Method Description boolean
FlatCollectBooleanToObjectIterable. allSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectByteToObjectIterable. allSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectCharToObjectIterable. allSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectDoubleToObjectIterable. allSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectFloatToObjectIterable. allSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectIntToObjectIterable. allSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectLongToObjectIterable. allSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectShortToObjectIterable. allSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectBooleanToObjectIterable. anySatisfy(Predicate<? super V> predicate)
boolean
FlatCollectByteToObjectIterable. anySatisfy(Predicate<? super V> predicate)
boolean
FlatCollectCharToObjectIterable. anySatisfy(Predicate<? super V> predicate)
boolean
FlatCollectDoubleToObjectIterable. anySatisfy(Predicate<? super V> predicate)
boolean
FlatCollectFloatToObjectIterable. anySatisfy(Predicate<? super V> predicate)
boolean
FlatCollectIntToObjectIterable. anySatisfy(Predicate<? super V> predicate)
boolean
FlatCollectLongToObjectIterable. anySatisfy(Predicate<? super V> predicate)
boolean
FlatCollectShortToObjectIterable. anySatisfy(Predicate<? super V> predicate)
V
FlatCollectBooleanToObjectIterable. detect(Predicate<? super V> predicate)
V
FlatCollectByteToObjectIterable. detect(Predicate<? super V> predicate)
V
FlatCollectCharToObjectIterable. detect(Predicate<? super V> predicate)
V
FlatCollectDoubleToObjectIterable. detect(Predicate<? super V> predicate)
V
FlatCollectFloatToObjectIterable. detect(Predicate<? super V> predicate)
V
FlatCollectIntToObjectIterable. detect(Predicate<? super V> predicate)
V
FlatCollectLongToObjectIterable. detect(Predicate<? super V> predicate)
V
FlatCollectShortToObjectIterable. detect(Predicate<? super V> predicate)
java.util.Optional<V>
FlatCollectBooleanToObjectIterable. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
FlatCollectByteToObjectIterable. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
FlatCollectCharToObjectIterable. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
FlatCollectDoubleToObjectIterable. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
FlatCollectFloatToObjectIterable. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
FlatCollectIntToObjectIterable. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
FlatCollectLongToObjectIterable. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
FlatCollectShortToObjectIterable. detectOptional(Predicate<? super V> predicate)
boolean
FlatCollectBooleanToObjectIterable. noneSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectByteToObjectIterable. noneSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectCharToObjectIterable. noneSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectDoubleToObjectIterable. noneSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectFloatToObjectIterable. noneSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectIntToObjectIterable. noneSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectLongToObjectIterable. noneSatisfy(Predicate<? super V> predicate)
boolean
FlatCollectShortToObjectIterable. noneSatisfy(Predicate<? super V> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.list
Methods in org.eclipse.collections.impl.list with parameters of type Predicate Modifier and Type Method Description <R extends java.util.Collection<java.lang.Integer>>
RInterval. reject(Predicate<? super java.lang.Integer> predicate, R target)
<R extends java.util.Collection<java.lang.Integer>>
RInterval. select(Predicate<? super java.lang.Integer> predicate, R target)
-
Uses of Predicate in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type Predicate Modifier and Type Method Description boolean
AbstractArrayAdapter. allSatisfy(Predicate<? super T> predicate)
boolean
AbstractArrayAdapter. anySatisfy(Predicate<? super T> predicate)
<V,R extends java.util.Collection<V>>
RAbstractArrayAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
int
AbstractArrayAdapter. count(Predicate<? super T> predicate)
T
AbstractArrayAdapter. detect(Predicate<? super T> predicate)
int
AbstractArrayAdapter. detectIndex(Predicate<? super T> predicate)
int
AbstractArrayAdapter. detectLastIndex(Predicate<? super T> predicate)
java.util.Optional<T>
AbstractArrayAdapter. detectOptional(Predicate<? super T> predicate)
boolean
AbstractArrayAdapter. noneSatisfy(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RAbstractArrayAdapter. reject(Predicate<? super T> predicate, R target)
boolean
AbstractArrayAdapter. removeIf(Predicate<? super T> predicate)
boolean
AbstractMemoryEfficientMutableList. removeIf(Predicate<? super T> predicate)
boolean
AbstractMemoryEfficientMutableList.SubList. removeIf(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RAbstractArrayAdapter. select(Predicate<? super T> predicate, R target)
-
Uses of Predicate in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type Predicate Modifier and Type Method Description boolean
ImmutableArrayList. allSatisfy(Predicate<? super T> predicate)
boolean
ImmutableEmptyList. allSatisfy(Predicate<? super T> predicate)
boolean
ImmutableArrayList. anySatisfy(Predicate<? super T> predicate)
boolean
ImmutableEmptyList. anySatisfy(Predicate<? super T> predicate)
<V> ImmutableList<V>
AbstractImmutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableArrayList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableEmptyList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableEmptyList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
int
AbstractImmutableList. count(Predicate<? super T> predicate)
int
ImmutableArrayList. count(Predicate<? super T> predicate)
int
ImmutableEmptyList. count(Predicate<? super T> predicate)
T
ImmutableArrayList. detect(Predicate<? super T> predicate)
T
ImmutableEmptyList. detect(Predicate<? super T> predicate)
T
ImmutableEmptyList. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
int
AbstractImmutableList. detectIndex(Predicate<? super T> predicate)
int
AbstractImmutableList. detectLastIndex(Predicate<? super T> predicate)
private int
ImmutableArrayList. detectNotIndex(Predicate<? super T> predicate)
java.util.Optional<T>
ImmutableArrayList. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
ImmutableEmptyList. detectOptional(Predicate<? super T> predicate)
ImmutableList<T>
AbstractImmutableList. dropWhile(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableArrayList. dropWhile(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableEmptyList. dropWhile(Predicate<? super T> predicate)
boolean
ImmutableArrayList. noneSatisfy(Predicate<? super T> predicate)
boolean
ImmutableEmptyList. noneSatisfy(Predicate<? super T> predicate)
PartitionImmutableList<T>
AbstractImmutableList. partition(Predicate<? super T> predicate)
PartitionImmutableList<T>
ImmutableArrayList. partition(Predicate<? super T> predicate)
PartitionImmutableList<T>
ImmutableEmptyList. partition(Predicate<? super T> predicate)
PartitionImmutableList<T>
AbstractImmutableList. partitionWhile(Predicate<? super T> predicate)
PartitionImmutableList<T>
ImmutableArrayList. partitionWhile(Predicate<? super T> predicate)
PartitionImmutableList<T>
ImmutableEmptyList. partitionWhile(Predicate<? super T> predicate)
ImmutableList<T>
AbstractImmutableList. reject(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableArrayList. reject(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableEmptyList. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RImmutableEmptyList. reject(Predicate<? super T> predicate, R target)
ImmutableList<T>
AbstractImmutableList. select(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableArrayList. select(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableEmptyList. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RImmutableEmptyList. select(Predicate<? super T> predicate, R target)
ImmutableList<T>
AbstractImmutableList. takeWhile(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableArrayList. takeWhile(Predicate<? super T> predicate)
ImmutableList<T>
ImmutableEmptyList. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type Predicate Modifier and Type Method Description boolean
AbstractMutableList. allSatisfy(Predicate<? super T> predicate)
boolean
ArrayListAdapter. allSatisfy(Predicate<? super T> predicate)
boolean
CompositeFastList. allSatisfy(Predicate<? super E> predicate)
boolean
FastList. allSatisfy(Predicate<? super T> predicate)
boolean
ListAdapter. allSatisfy(Predicate<? super T> predicate)
boolean
RandomAccessListAdapter. allSatisfy(Predicate<? super T> predicate)
boolean
AbstractMutableList. anySatisfy(Predicate<? super T> predicate)
boolean
ArrayListAdapter. anySatisfy(Predicate<? super T> predicate)
boolean
CompositeFastList. anySatisfy(Predicate<? super E> predicate)
boolean
FastList. anySatisfy(Predicate<? super T> predicate)
boolean
ListAdapter. anySatisfy(Predicate<? super T> predicate)
boolean
RandomAccessListAdapter. anySatisfy(Predicate<? super T> predicate)
<V> MutableList<V>
AbstractListAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RAbstractMutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
<V> ArrayListAdapter<V>
ArrayListAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> FastList<V>
FastList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RFastList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
<V> MutableList<V>
MultiReaderFastList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableList<V>
MultiReaderFastList.UntouchableMutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableList<V>
RandomAccessListAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableList<V>
SynchronizedMutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableList<V>
UnmodifiableMutableList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
int
AbstractMutableList. count(Predicate<? super T> predicate)
int
ArrayListAdapter. count(Predicate<? super T> predicate)
int
CompositeFastList. count(Predicate<? super E> predicate)
int
FastList. count(Predicate<? super T> predicate)
int
ListAdapter. count(Predicate<? super T> predicate)
int
RandomAccessListAdapter. count(Predicate<? super T> predicate)
T
AbstractMutableList. detect(Predicate<? super T> predicate)
T
ArrayListAdapter. detect(Predicate<? super T> predicate)
T
FastList. detect(Predicate<? super T> predicate)
T
ListAdapter. detect(Predicate<? super T> predicate)
T
RandomAccessListAdapter. detect(Predicate<? super T> predicate)
T
ArrayListAdapter. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
T
ListAdapter. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
T
RandomAccessListAdapter. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
int
AbstractMutableList. detectIndex(Predicate<? super T> predicate)
int
ArrayListAdapter. detectIndex(Predicate<? super T> predicate)
int
FastList. detectIndex(Predicate<? super T> predicate)
int
ListAdapter. detectIndex(Predicate<? super T> predicate)
int
MultiReaderFastList. detectIndex(Predicate<? super T> predicate)
int
MultiReaderFastList.UntouchableMutableList. detectIndex(Predicate<? super T> predicate)
int
RandomAccessListAdapter. detectIndex(Predicate<? super T> predicate)
int
SynchronizedMutableList. detectIndex(Predicate<? super T> predicate)
int
UnmodifiableMutableList. detectIndex(Predicate<? super T> predicate)
int
AbstractMutableList. detectLastIndex(Predicate<? super T> predicate)
int
ArrayListAdapter. detectLastIndex(Predicate<? super T> predicate)
int
FastList. detectLastIndex(Predicate<? super T> predicate)
int
ListAdapter. detectLastIndex(Predicate<? super T> predicate)
int
MultiReaderFastList. detectLastIndex(Predicate<? super T> predicate)
int
MultiReaderFastList.UntouchableMutableList. detectLastIndex(Predicate<? super T> predicate)
int
RandomAccessListAdapter. detectLastIndex(Predicate<? super T> predicate)
int
SynchronizedMutableList. detectLastIndex(Predicate<? super T> predicate)
int
UnmodifiableMutableList. detectLastIndex(Predicate<? super T> predicate)
private int
FastList. detectNotIndex(Predicate<? super T> predicate)
java.util.Optional<T>
AbstractMutableList. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
FastList. detectOptional(Predicate<? super T> predicate)
MutableList<T>
AbstractMutableList. dropWhile(Predicate<? super T> predicate)
MutableList<T>
ArrayListAdapter. dropWhile(Predicate<? super T> predicate)
MutableList<T>
FastList. dropWhile(Predicate<? super T> predicate)
MutableList<T>
ListAdapter. dropWhile(Predicate<? super T> predicate)
MutableList<T>
MultiReaderFastList. dropWhile(Predicate<? super T> predicate)
MutableList<T>
MultiReaderFastList.UntouchableMutableList. dropWhile(Predicate<? super T> predicate)
MutableList<T>
RandomAccessListAdapter. dropWhile(Predicate<? super T> predicate)
MutableList<T>
SynchronizedMutableList. dropWhile(Predicate<? super T> predicate)
MutableList<T>
UnmodifiableMutableList. dropWhile(Predicate<? super T> predicate)
void
FastList. forEachIf(Predicate<? super T> predicate, Procedure<? super T> procedure)
boolean
AbstractMutableList. noneSatisfy(Predicate<? super T> predicate)
boolean
ArrayListAdapter. noneSatisfy(Predicate<? super T> predicate)
boolean
CompositeFastList. noneSatisfy(Predicate<? super E> predicate)
boolean
FastList. noneSatisfy(Predicate<? super T> predicate)
boolean
ListAdapter. noneSatisfy(Predicate<? super T> predicate)
boolean
RandomAccessListAdapter. noneSatisfy(Predicate<? super T> predicate)
PartitionMutableList<T>
AbstractListAdapter. partition(Predicate<? super T> predicate)
PartitionMutableList<T>
AbstractMutableList. partition(Predicate<? super T> predicate)
PartitionMutableList<T>
ArrayListAdapter. partition(Predicate<? super T> predicate)
PartitionFastList<T>
FastList. partition(Predicate<? super T> predicate)
PartitionMutableList<T>
MultiReaderFastList. partition(Predicate<? super T> predicate)
PartitionMutableList<T>
MultiReaderFastList.UntouchableMutableList. 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>
MultiReaderFastList.UntouchableMutableList. 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)
MutableList<T>
AbstractListAdapter. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RAbstractMutableList. reject(Predicate<? super T> predicate, R target)
ArrayListAdapter<T>
ArrayListAdapter. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<E>>
RCompositeFastList. reject(Predicate<? super E> predicate, R target)
FastList<T>
FastList. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RFastList. reject(Predicate<? super T> predicate, R target)
MutableList<T>
MultiReaderFastList. reject(Predicate<? super T> predicate)
MutableList<T>
MultiReaderFastList.UntouchableMutableList. reject(Predicate<? super T> predicate)
MutableList<T>
RandomAccessListAdapter. reject(Predicate<? super T> predicate)
MutableList<T>
SynchronizedMutableList. reject(Predicate<? super T> predicate)
MutableList<T>
UnmodifiableMutableList. reject(Predicate<? super T> predicate)
boolean
AbstractMutableList. removeIf(Predicate<? super T> predicate)
boolean
FastList. removeIf(Predicate<? super T> predicate)
MutableList<T>
AbstractListAdapter. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RAbstractMutableList. select(Predicate<? super T> predicate, R target)
ArrayListAdapter<T>
ArrayListAdapter. select(Predicate<? super T> predicate)
<R extends java.util.Collection<E>>
RCompositeFastList. select(Predicate<? super E> predicate, R target)
FastList<T>
FastList. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RFastList. select(Predicate<? super T> predicate, R target)
MutableList<T>
MultiReaderFastList. select(Predicate<? super T> predicate)
MutableList<T>
MultiReaderFastList.UntouchableMutableList. select(Predicate<? super T> predicate)
MutableList<T>
RandomAccessListAdapter. select(Predicate<? super T> predicate)
MutableList<T>
SynchronizedMutableList. select(Predicate<? super T> predicate)
MutableList<T>
UnmodifiableMutableList. select(Predicate<? super T> predicate)
MutableList<T>
AbstractMutableList. takeWhile(Predicate<? super T> predicate)
MutableList<T>
ArrayListAdapter. takeWhile(Predicate<? super T> predicate)
MutableList<T>
FastList. takeWhile(Predicate<? super T> predicate)
MutableList<T>
ListAdapter. takeWhile(Predicate<? super T> predicate)
MutableList<T>
MultiReaderFastList. takeWhile(Predicate<? super T> predicate)
MutableList<T>
MultiReaderFastList.UntouchableMutableList. takeWhile(Predicate<? super T> predicate)
MutableList<T>
RandomAccessListAdapter. takeWhile(Predicate<? super T> predicate)
MutableList<T>
SynchronizedMutableList. takeWhile(Predicate<? super T> predicate)
MutableList<T>
UnmodifiableMutableList. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map with parameters of type Predicate Modifier and Type Method Description boolean
AbstractMapIterable. allSatisfy(Predicate<? super V> predicate)
boolean
AbstractMapIterable. anySatisfy(Predicate<? super V> predicate)
V
AbstractMapIterable. detect(Predicate<? super V> predicate)
V
AbstractMapIterable. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
java.util.Optional<V>
AbstractMapIterable. detectOptional(Predicate<? super V> predicate)
boolean
AbstractMapIterable. noneSatisfy(Predicate<? super V> predicate)
PartitionMutableCollection<V>
AbstractSynchronizedMapIterable. partition(Predicate<? super V> predicate)
MutableCollection<V>
AbstractSynchronizedMapIterable. reject(Predicate<? super V> predicate)
MutableCollection<V>
AbstractSynchronizedMapIterable. select(Predicate<? super V> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type Predicate Modifier and Type Method Description <R> ImmutableBag<R>
AbstractImmutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
PartitionImmutableBag<V>
AbstractImmutableMap. partition(Predicate<? super V> predicate)
ImmutableBag<V>
AbstractImmutableMap. reject(Predicate<? super V> predicate)
ImmutableBag<V>
AbstractImmutableMap. select(Predicate<? super V> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type Predicate Modifier and Type Method Description boolean
ImmutableByteObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableByteObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableByteObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableCharObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableCharObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableCharObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableDoubleObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableDoubleObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableDoubleObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableFloatObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableFloatObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableFloatObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableIntObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableIntObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableIntObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableLongObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableLongObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableLongObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableShortObjectEmptyMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableShortObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableShortObjectSingletonMap. allSatisfy(Predicate<? super V> predicate)
boolean
ImmutableByteObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableByteObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableByteObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableCharObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableCharObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableCharObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableDoubleObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableDoubleObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableDoubleObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableFloatObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableFloatObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableFloatObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableIntObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableIntObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableIntObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableLongObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableLongObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableLongObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableShortObjectEmptyMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableShortObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
ImmutableShortObjectSingletonMap. anySatisfy(Predicate<? super V> predicate)
<VV> ImmutableBag<VV>
ImmutableByteObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableByteObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableByteObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableByteObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableByteObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableByteObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableCharObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableCharObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableCharObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableCharObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableCharObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableCharObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableDoubleObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableDoubleObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableDoubleObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableDoubleObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableDoubleObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableDoubleObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableFloatObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableFloatObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableFloatObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableFloatObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableFloatObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableFloatObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableIntObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableIntObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableIntObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableIntObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableIntObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableIntObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableLongObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableLongObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableLongObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableLongObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableLongObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableLongObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableShortObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableShortObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableShortObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableShortObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> ImmutableBag<VV>
ImmutableShortObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RImmutableShortObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
int
ImmutableByteObjectEmptyMap. count(Predicate<? super V> predicate)
int
ImmutableByteObjectHashMap. count(Predicate<? super V> predicate)
int
ImmutableByteObjectSingletonMap. count(Predicate<? super V> predicate)
int
ImmutableCharObjectEmptyMap. count(Predicate<? super V> predicate)
int
ImmutableCharObjectHashMap. count(Predicate<? super V> predicate)
int
ImmutableCharObjectSingletonMap. count(Predicate<? super V> predicate)
int
ImmutableDoubleObjectEmptyMap. count(Predicate<? super V> predicate)
int
ImmutableDoubleObjectHashMap. count(Predicate<? super V> predicate)
int
ImmutableDoubleObjectSingletonMap. count(Predicate<? super V> predicate)
int
ImmutableFloatObjectEmptyMap. count(Predicate<? super V> predicate)
int
ImmutableFloatObjectHashMap. count(Predicate<? super V> predicate)
int
ImmutableFloatObjectSingletonMap. count(Predicate<? super V> predicate)
int
ImmutableIntObjectEmptyMap. count(Predicate<? super V> predicate)
int
ImmutableIntObjectHashMap. count(Predicate<? super V> predicate)
int
ImmutableIntObjectSingletonMap. count(Predicate<? super V> predicate)
int
ImmutableLongObjectEmptyMap. count(Predicate<? super V> predicate)
int
ImmutableLongObjectHashMap. count(Predicate<? super V> predicate)
int
ImmutableLongObjectSingletonMap. count(Predicate<? super V> predicate)
int
ImmutableShortObjectEmptyMap. count(Predicate<? super V> predicate)
int
ImmutableShortObjectHashMap. count(Predicate<? super V> predicate)
int
ImmutableShortObjectSingletonMap. count(Predicate<? super V> predicate)
V
ImmutableByteObjectEmptyMap. detect(Predicate<? super V> predicate)
V
ImmutableByteObjectHashMap. detect(Predicate<? super V> predicate)
V
ImmutableByteObjectSingletonMap. detect(Predicate<? super V> predicate)
V
ImmutableCharObjectEmptyMap. detect(Predicate<? super V> predicate)
V
ImmutableCharObjectHashMap. detect(Predicate<? super V> predicate)
V
ImmutableCharObjectSingletonMap. detect(Predicate<? super V> predicate)
V
ImmutableDoubleObjectEmptyMap. detect(Predicate<? super V> predicate)
V
ImmutableDoubleObjectHashMap. detect(Predicate<? super V> predicate)
V
ImmutableDoubleObjectSingletonMap. detect(Predicate<? super V> predicate)
V
ImmutableFloatObjectEmptyMap. detect(Predicate<? super V> predicate)
V
ImmutableFloatObjectHashMap. detect(Predicate<? super V> predicate)
V
ImmutableFloatObjectSingletonMap. detect(Predicate<? super V> predicate)
V
ImmutableIntObjectEmptyMap. detect(Predicate<? super V> predicate)
V
ImmutableIntObjectHashMap. detect(Predicate<? super V> predicate)
V
ImmutableIntObjectSingletonMap. detect(Predicate<? super V> predicate)
V
ImmutableLongObjectEmptyMap. detect(Predicate<? super V> predicate)
V
ImmutableLongObjectHashMap. detect(Predicate<? super V> predicate)
V
ImmutableLongObjectSingletonMap. detect(Predicate<? super V> predicate)
V
ImmutableShortObjectEmptyMap. detect(Predicate<? super V> predicate)
V
ImmutableShortObjectHashMap. detect(Predicate<? super V> predicate)
V
ImmutableShortObjectSingletonMap. detect(Predicate<? super V> predicate)
V
ImmutableByteObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableByteObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableByteObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableCharObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableCharObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableCharObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableDoubleObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableDoubleObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableDoubleObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableFloatObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableFloatObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableFloatObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableIntObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableIntObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableIntObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableLongObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableLongObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableLongObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableShortObjectEmptyMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableShortObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ImmutableShortObjectSingletonMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
java.util.Optional<V>
ImmutableByteObjectEmptyMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableByteObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableByteObjectSingletonMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableCharObjectEmptyMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableCharObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableCharObjectSingletonMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableDoubleObjectEmptyMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableDoubleObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableDoubleObjectSingletonMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableFloatObjectEmptyMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableFloatObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableFloatObjectSingletonMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableIntObjectEmptyMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableIntObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableIntObjectSingletonMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableLongObjectEmptyMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableLongObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableLongObjectSingletonMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableShortObjectEmptyMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableShortObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ImmutableShortObjectSingletonMap. detectOptional(Predicate<? super V> predicate)
boolean
ImmutableByteObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableByteObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableByteObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableCharObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableCharObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableCharObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableDoubleObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableDoubleObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableDoubleObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableFloatObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableFloatObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableFloatObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableIntObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableIntObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableIntObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableLongObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableLongObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableLongObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableShortObjectEmptyMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableShortObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ImmutableShortObjectSingletonMap. noneSatisfy(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableByteObjectEmptyMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableByteObjectHashMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableByteObjectSingletonMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableCharObjectEmptyMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableCharObjectHashMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableCharObjectSingletonMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableDoubleObjectEmptyMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableDoubleObjectHashMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableDoubleObjectSingletonMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableFloatObjectEmptyMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableFloatObjectHashMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableFloatObjectSingletonMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableIntObjectEmptyMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableIntObjectHashMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableIntObjectSingletonMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableLongObjectEmptyMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableLongObjectHashMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableLongObjectSingletonMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableShortObjectEmptyMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableShortObjectHashMap. partition(Predicate<? super V> predicate)
PartitionImmutableBag<V>
ImmutableShortObjectSingletonMap. partition(Predicate<? super V> predicate)
ImmutableBag<V>
ImmutableByteObjectEmptyMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableByteObjectEmptyMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableByteObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableByteObjectHashMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableByteObjectSingletonMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableByteObjectSingletonMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableCharObjectEmptyMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableCharObjectEmptyMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableCharObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableCharObjectHashMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableCharObjectSingletonMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableCharObjectSingletonMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableDoubleObjectEmptyMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableDoubleObjectEmptyMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableDoubleObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableDoubleObjectHashMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableDoubleObjectSingletonMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableDoubleObjectSingletonMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableFloatObjectEmptyMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableFloatObjectEmptyMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableFloatObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableFloatObjectHashMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableFloatObjectSingletonMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableFloatObjectSingletonMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableIntObjectEmptyMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableIntObjectEmptyMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableIntObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableIntObjectHashMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableIntObjectSingletonMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableIntObjectSingletonMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableLongObjectEmptyMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableLongObjectEmptyMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableLongObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableLongObjectHashMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableLongObjectSingletonMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableLongObjectSingletonMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableShortObjectEmptyMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableShortObjectEmptyMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableShortObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableShortObjectHashMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableShortObjectSingletonMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableShortObjectSingletonMap. reject(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableByteObjectEmptyMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableByteObjectEmptyMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableByteObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableByteObjectHashMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableByteObjectSingletonMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableByteObjectSingletonMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableCharObjectEmptyMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableCharObjectEmptyMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableCharObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableCharObjectHashMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableCharObjectSingletonMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableCharObjectSingletonMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableDoubleObjectEmptyMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableDoubleObjectEmptyMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableDoubleObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableDoubleObjectHashMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableDoubleObjectSingletonMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableDoubleObjectSingletonMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableFloatObjectEmptyMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableFloatObjectEmptyMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableFloatObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableFloatObjectHashMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableFloatObjectSingletonMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableFloatObjectSingletonMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableIntObjectEmptyMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableIntObjectEmptyMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableIntObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableIntObjectHashMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableIntObjectSingletonMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableIntObjectSingletonMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableLongObjectEmptyMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableLongObjectEmptyMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableLongObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableLongObjectHashMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableLongObjectSingletonMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableLongObjectSingletonMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableShortObjectEmptyMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableShortObjectEmptyMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableShortObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableShortObjectHashMap. select(Predicate<? super V> predicate, R target)
ImmutableBag<V>
ImmutableShortObjectSingletonMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RImmutableShortObjectSingletonMap. select(Predicate<? super V> predicate, R target)
-
Uses of Predicate in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type Predicate Modifier and Type Method Description boolean
UnifiedMap. allSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableMutableMap. allSatisfy(Predicate<? super V> predicate)
boolean
UnifiedMap. anySatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableMutableMap. anySatisfy(Predicate<? super V> predicate)
<R> MutableBag<R>
AbstractMutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
<A> MutableBag<A>
SynchronizedMutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends A> function)
<R> MutableBag<R>
UnmodifiableMutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
<R,C extends java.util.Collection<R>>
CUnmodifiableMutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function, C target)
int
UnmodifiableMutableMap. count(Predicate<? super V> predicate)
V
UnifiedMap. detect(Predicate<? super V> predicate)
V
UnmodifiableMutableMap. detect(Predicate<? super V> predicate)
V
UnifiedMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
UnmodifiableMutableMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
java.util.Optional<V>
UnifiedMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
UnmodifiableMutableMap. detectOptional(Predicate<? super V> predicate)
boolean
UnifiedMap. noneSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableMutableMap. noneSatisfy(Predicate<? super V> predicate)
PartitionMutableBag<V>
AbstractMutableMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
SynchronizedMutableMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
UnmodifiableMutableMap. partition(Predicate<? super V> predicate)
MutableBag<V>
AbstractMutableMap. reject(Predicate<? super V> predicate)
MutableBag<V>
SynchronizedMutableMap. reject(Predicate<? super V> predicate)
MutableBag<V>
UnmodifiableMutableMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableMutableMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
AbstractMutableMap. select(Predicate<? super V> predicate)
MutableBag<V>
SynchronizedMutableMap. select(Predicate<? super V> predicate)
MutableBag<V>
UnmodifiableMutableMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableMutableMap. select(Predicate<? super V> predicate, R target)
private boolean
UnifiedMap. shortCircuit(Predicate<? super V> predicate, boolean expected, boolean onShortCircuit, boolean atEnd)
-
Uses of Predicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type Predicate Modifier and Type Method Description boolean
ByteObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
CharObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
DoubleObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
FloatObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
IntObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
LongObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
ShortObjectHashMap. allSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedByteObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedCharObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedDoubleObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedFloatObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedIntObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedLongObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedShortObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableByteObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableCharObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableDoubleObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableFloatObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableIntObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableLongObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableShortObjectMap. allSatisfy(Predicate<? super V> predicate)
boolean
ByteObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
CharObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
DoubleObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
FloatObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
IntObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
LongObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
ShortObjectHashMap. anySatisfy(Predicate<? super V> predicate)
boolean
SynchronizedByteObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
SynchronizedCharObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
SynchronizedDoubleObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
SynchronizedFloatObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
SynchronizedIntObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
SynchronizedLongObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
SynchronizedShortObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableByteObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableCharObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableDoubleObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableFloatObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableIntObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableLongObjectMap. anySatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableShortObjectMap. anySatisfy(Predicate<? super V> predicate)
<VV> MutableBag<VV>
ByteObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RByteObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
CharObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RCharObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
DoubleObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RDoubleObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
FloatObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RFloatObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
IntObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RIntObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
LongObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RLongObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
ShortObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RShortObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
SynchronizedByteObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RSynchronizedByteObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
SynchronizedCharObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RSynchronizedCharObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
SynchronizedDoubleObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RSynchronizedDoubleObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
SynchronizedFloatObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RSynchronizedFloatObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
SynchronizedIntObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RSynchronizedIntObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
SynchronizedLongObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RSynchronizedLongObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
SynchronizedShortObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RSynchronizedShortObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
UnmodifiableByteObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RUnmodifiableByteObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
UnmodifiableCharObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RUnmodifiableCharObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
UnmodifiableDoubleObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RUnmodifiableDoubleObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
UnmodifiableFloatObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RUnmodifiableFloatObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
UnmodifiableIntObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RUnmodifiableIntObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
UnmodifiableLongObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RUnmodifiableLongObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
<VV> MutableBag<VV>
UnmodifiableShortObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RUnmodifiableShortObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
int
ByteObjectHashMap. count(Predicate<? super V> predicate)
int
CharObjectHashMap. count(Predicate<? super V> predicate)
int
DoubleObjectHashMap. count(Predicate<? super V> predicate)
int
FloatObjectHashMap. count(Predicate<? super V> predicate)
int
IntObjectHashMap. count(Predicate<? super V> predicate)
int
LongObjectHashMap. count(Predicate<? super V> predicate)
int
ShortObjectHashMap. count(Predicate<? super V> predicate)
int
SynchronizedByteObjectMap. count(Predicate<? super V> predicate)
int
SynchronizedCharObjectMap. count(Predicate<? super V> predicate)
int
SynchronizedDoubleObjectMap. count(Predicate<? super V> predicate)
int
SynchronizedFloatObjectMap. count(Predicate<? super V> predicate)
int
SynchronizedIntObjectMap. count(Predicate<? super V> predicate)
int
SynchronizedLongObjectMap. count(Predicate<? super V> predicate)
int
SynchronizedShortObjectMap. count(Predicate<? super V> predicate)
int
UnmodifiableByteObjectMap. count(Predicate<? super V> predicate)
int
UnmodifiableCharObjectMap. count(Predicate<? super V> predicate)
int
UnmodifiableDoubleObjectMap. count(Predicate<? super V> predicate)
int
UnmodifiableFloatObjectMap. count(Predicate<? super V> predicate)
int
UnmodifiableIntObjectMap. count(Predicate<? super V> predicate)
int
UnmodifiableLongObjectMap. count(Predicate<? super V> predicate)
int
UnmodifiableShortObjectMap. count(Predicate<? super V> predicate)
V
ByteObjectHashMap. detect(Predicate<? super V> predicate)
V
CharObjectHashMap. detect(Predicate<? super V> predicate)
V
DoubleObjectHashMap. detect(Predicate<? super V> predicate)
V
FloatObjectHashMap. detect(Predicate<? super V> predicate)
V
IntObjectHashMap. detect(Predicate<? super V> predicate)
V
LongObjectHashMap. detect(Predicate<? super V> predicate)
V
ShortObjectHashMap. detect(Predicate<? super V> predicate)
V
SynchronizedByteObjectMap. detect(Predicate<? super V> predicate)
V
SynchronizedCharObjectMap. detect(Predicate<? super V> predicate)
V
SynchronizedDoubleObjectMap. detect(Predicate<? super V> predicate)
V
SynchronizedFloatObjectMap. detect(Predicate<? super V> predicate)
V
SynchronizedIntObjectMap. detect(Predicate<? super V> predicate)
V
SynchronizedLongObjectMap. detect(Predicate<? super V> predicate)
V
SynchronizedShortObjectMap. detect(Predicate<? super V> predicate)
V
UnmodifiableByteObjectMap. detect(Predicate<? super V> predicate)
V
UnmodifiableCharObjectMap. detect(Predicate<? super V> predicate)
V
UnmodifiableDoubleObjectMap. detect(Predicate<? super V> predicate)
V
UnmodifiableFloatObjectMap. detect(Predicate<? super V> predicate)
V
UnmodifiableIntObjectMap. detect(Predicate<? super V> predicate)
V
UnmodifiableLongObjectMap. detect(Predicate<? super V> predicate)
V
UnmodifiableShortObjectMap. detect(Predicate<? super V> predicate)
V
ByteObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
CharObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
DoubleObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
FloatObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
IntObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
LongObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
ShortObjectHashMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
SynchronizedByteObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
SynchronizedCharObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
SynchronizedDoubleObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
SynchronizedFloatObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
SynchronizedIntObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
SynchronizedLongObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
SynchronizedShortObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
UnmodifiableByteObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
UnmodifiableCharObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
UnmodifiableDoubleObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
UnmodifiableFloatObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
UnmodifiableIntObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
UnmodifiableLongObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
V
UnmodifiableShortObjectMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
java.util.Optional<V>
ByteObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
CharObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
DoubleObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
FloatObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
IntObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
LongObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
ShortObjectHashMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
SynchronizedByteObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
SynchronizedCharObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
SynchronizedDoubleObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
SynchronizedFloatObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
SynchronizedIntObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
SynchronizedLongObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
SynchronizedShortObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
UnmodifiableByteObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
UnmodifiableCharObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
UnmodifiableDoubleObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
UnmodifiableFloatObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
UnmodifiableIntObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
UnmodifiableLongObjectMap. detectOptional(Predicate<? super V> predicate)
java.util.Optional<V>
UnmodifiableShortObjectMap. detectOptional(Predicate<? super V> predicate)
boolean
ByteObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
CharObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
DoubleObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
FloatObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
IntObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
LongObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
ShortObjectHashMap. noneSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedByteObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedCharObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedDoubleObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedFloatObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedIntObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedLongObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
SynchronizedShortObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableByteObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableCharObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableDoubleObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableFloatObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableIntObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableLongObjectMap. noneSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableShortObjectMap. noneSatisfy(Predicate<? super V> predicate)
PartitionMutableBag<V>
ByteObjectHashMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
CharObjectHashMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
DoubleObjectHashMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
FloatObjectHashMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
IntObjectHashMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
LongObjectHashMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
ShortObjectHashMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
SynchronizedByteObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
SynchronizedCharObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
SynchronizedDoubleObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
SynchronizedFloatObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
SynchronizedIntObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
SynchronizedLongObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
SynchronizedShortObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
UnmodifiableByteObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
UnmodifiableCharObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
UnmodifiableDoubleObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
UnmodifiableFloatObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
UnmodifiableIntObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
UnmodifiableLongObjectMap. partition(Predicate<? super V> predicate)
PartitionMutableBag<V>
UnmodifiableShortObjectMap. partition(Predicate<? super V> predicate)
MutableBag<V>
ByteObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RByteObjectHashMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
CharObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RCharObjectHashMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
DoubleObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RDoubleObjectHashMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
FloatObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RFloatObjectHashMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
IntObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RIntObjectHashMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
LongObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RLongObjectHashMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
ShortObjectHashMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RShortObjectHashMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedByteObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedByteObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedCharObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedCharObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedDoubleObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedDoubleObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedFloatObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedFloatObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedIntObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedIntObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedLongObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedLongObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedShortObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedShortObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableByteObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableByteObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableCharObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableCharObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableDoubleObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableDoubleObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableFloatObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableFloatObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableIntObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableIntObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableLongObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableLongObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableShortObjectMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableShortObjectMap. reject(Predicate<? super V> predicate, R target)
MutableBag<V>
ByteObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RByteObjectHashMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
CharObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RCharObjectHashMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
DoubleObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RDoubleObjectHashMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
FloatObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RFloatObjectHashMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
IntObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RIntObjectHashMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
LongObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RLongObjectHashMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
ShortObjectHashMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RShortObjectHashMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedByteObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedByteObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedCharObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedCharObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedDoubleObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedDoubleObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedFloatObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedFloatObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedIntObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedIntObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedLongObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedLongObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
SynchronizedShortObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RSynchronizedShortObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableByteObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableByteObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableCharObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableCharObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableDoubleObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableDoubleObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableFloatObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableFloatObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableIntObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableIntObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableLongObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableLongObjectMap. select(Predicate<? super V> predicate, R target)
MutableBag<V>
UnmodifiableShortObjectMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableShortObjectMap. select(Predicate<? super V> predicate, R target)
-
Uses of Predicate in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type Predicate Modifier and Type Method Description boolean
UnmodifiableMutableOrderedMap. allSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableMutableOrderedMap. anySatisfy(Predicate<? super V> predicate)
<R> MutableList<R>
OrderedMapAdapter. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
<VV> MutableList<VV>
UnmodifiableMutableOrderedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)
<VV,R extends java.util.Collection<VV>>
RUnmodifiableMutableOrderedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function, R target)
int
UnmodifiableMutableOrderedMap. count(Predicate<? super V> predicate)
V
UnmodifiableMutableOrderedMap. detect(Predicate<? super V> predicate)
V
UnmodifiableMutableOrderedMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
int
OrderedMapAdapter. detectIndex(Predicate<? super V> predicate)
int
UnmodifiableMutableOrderedMap. detectIndex(Predicate<? super V> predicate)
int
OrderedMapAdapter. detectLastIndex(Predicate<? super V> predicate)
int
UnmodifiableMutableOrderedMap. detectLastIndex(Predicate<? super V> predicate)
java.util.Optional<V>
UnmodifiableMutableOrderedMap. detectOptional(Predicate<? super V> predicate)
MutableOrderedMap<K,V>
OrderedMapAdapter. dropWhile(Predicate<? super V> predicate)
MutableOrderedMap<K,V>
UnmodifiableMutableOrderedMap. dropWhile(Predicate<? super V> predicate)
boolean
UnmodifiableMutableOrderedMap. noneSatisfy(Predicate<? super V> predicate)
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)
MutableList<V>
OrderedMapAdapter. reject(Predicate<? super V> predicate)
MutableList<V>
UnmodifiableMutableOrderedMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableMutableOrderedMap. reject(Predicate<? super V> predicate, R target)
MutableList<V>
OrderedMapAdapter. select(Predicate<? super V> predicate)
MutableList<V>
UnmodifiableMutableOrderedMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableMutableOrderedMap. select(Predicate<? super V> predicate, R target)
MutableOrderedMap<K,V>
OrderedMapAdapter. takeWhile(Predicate<? super V> predicate)
MutableOrderedMap<K,V>
UnmodifiableMutableOrderedMap. takeWhile(Predicate<? super V> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type Predicate Modifier and Type Method Description <R> ImmutableList<R>
AbstractImmutableSortedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
int
AbstractImmutableSortedMap. detectIndex(Predicate<? super V> predicate)
int
AbstractImmutableSortedMap. detectLastIndex(Predicate<? super V> predicate)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. dropWhile(Predicate<? super V> predicate)
PartitionImmutableList<V>
AbstractImmutableSortedMap. partition(Predicate<? super V> predicate)
PartitionImmutableList<V>
AbstractImmutableSortedMap. partitionWhile(Predicate<? super V> predicate)
ImmutableList<V>
AbstractImmutableSortedMap. reject(Predicate<? super V> predicate)
ImmutableList<V>
AbstractImmutableSortedMap. select(Predicate<? super V> predicate)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. takeWhile(Predicate<? super V> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type Predicate Modifier and Type Method Description boolean
UnmodifiableTreeMap. allSatisfy(Predicate<? super V> predicate)
boolean
UnmodifiableTreeMap. anySatisfy(Predicate<? super V> predicate)
<R> MutableList<R>
AbstractMutableSortedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
<R> MutableList<R>
SynchronizedSortedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
<R> MutableList<R>
UnmodifiableTreeMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
<R,C extends java.util.Collection<R>>
CUnmodifiableTreeMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function, C target)
int
UnmodifiableTreeMap. count(Predicate<? super V> predicate)
V
UnmodifiableTreeMap. detect(Predicate<? super V> predicate)
V
UnmodifiableTreeMap. detectIfNone(Predicate<? super V> predicate, Function0<? extends V> function)
int
AbstractMutableSortedMap. detectIndex(Predicate<? super V> predicate)
int
SynchronizedSortedMap. detectIndex(Predicate<? super V> predicate)
int
UnmodifiableTreeMap. detectIndex(Predicate<? super V> predicate)
int
AbstractMutableSortedMap. detectLastIndex(Predicate<? super V> predicate)
int
SynchronizedSortedMap. detectLastIndex(Predicate<? super V> predicate)
int
UnmodifiableTreeMap. detectLastIndex(Predicate<? super V> predicate)
java.util.Optional<V>
UnmodifiableTreeMap. detectOptional(Predicate<? super V> predicate)
MutableSortedMap<K,V>
SortedMapAdapter. dropWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
SynchronizedSortedMap. dropWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
TreeSortedMap. dropWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
UnmodifiableTreeMap. dropWhile(Predicate<? super V> predicate)
boolean
UnmodifiableTreeMap. noneSatisfy(Predicate<? super V> predicate)
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)
MutableList<V>
AbstractMutableSortedMap. reject(Predicate<? super V> predicate)
MutableList<V>
SynchronizedSortedMap. reject(Predicate<? super V> predicate)
MutableList<V>
UnmodifiableTreeMap. reject(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableTreeMap. reject(Predicate<? super V> predicate, R target)
MutableList<V>
AbstractMutableSortedMap. select(Predicate<? super V> predicate)
MutableList<V>
SynchronizedSortedMap. select(Predicate<? super V> predicate)
MutableList<V>
UnmodifiableTreeMap. select(Predicate<? super V> predicate)
<R extends java.util.Collection<V>>
RUnmodifiableTreeMap. select(Predicate<? super V> predicate, R target)
MutableSortedMap<K,V>
SortedMapAdapter. takeWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
SynchronizedSortedMap. takeWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
TreeSortedMap. takeWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
UnmodifiableTreeMap. takeWhile(Predicate<? super V> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.parallel
Fields in org.eclipse.collections.impl.parallel declared as Predicate Modifier and Type Field Description private Predicate<? super T>
CollectIfProcedureFactory. predicate
private Predicate<? super T>
CountProcedureFactory. predicate
private Predicate<? super T>
FastListCollectIfProcedureFactory. predicate
private Predicate<? super T>
FastListRejectProcedureFactory. predicate
private Predicate<? super T>
FastListSelectProcedureFactory. predicate
private Predicate<? super T>
RejectProcedureFactory. predicate
private Predicate<? super T>
SelectProcedureFactory. predicate
Methods in org.eclipse.collections.impl.parallel with parameters of type Predicate Modifier and Type Method Description static <T,V>
java.util.Collection<V>ParallelIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function)
Same effect asIterate.collectIf(Iterable, Predicate, Function)
, but executed in parallel batches.static <T,V>
java.util.Collection<V>ParallelIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function, boolean allowReorderedResult)
Same effect asIterate.collectIf(Iterable, Predicate, Function)
, but executed in parallel batches, and with potentially reordered results.static <T,V,R extends java.util.Collection<V>>
RParallelIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function, R target, boolean allowReorderedResult)
Same effect asIterate.collectIf(Iterable, Predicate, Function)
, but executed in parallel batches, and writing output into the specified collection.static <T,V,R extends java.util.Collection<V>>
RParallelIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,V> function, R target, int batchSize, java.util.concurrent.Executor executor, boolean allowReorderedResult)
static <T> int
ParallelIterate. count(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Same effect asIterate.count(Iterable, Predicate)
, but executed in parallel batches.static <T> int
ParallelIterate. count(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, int batchSize, java.util.concurrent.Executor executor)
Same effect asIterate.count(Iterable, Predicate)
, but executed in parallel batches.static <T> java.util.Collection<T>
ParallelIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Same effect asIterate.reject(Iterable, Predicate)
, but executed in parallel batches.static <T> java.util.Collection<T>
ParallelIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, boolean allowReorderedResult)
Same effect asIterate.reject(Iterable, Predicate)
, but executed in parallel batches, and with a potentially reordered result.static <T,R extends java.util.Collection<T>>
RParallelIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, boolean allowReorderedResult)
Same effect asIterate.reject(Iterable, Predicate)
, but executed in parallel batches, and writing output into the specified collection.static <T,R extends java.util.Collection<T>>
RParallelIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, int batchSize, java.util.concurrent.Executor executor, boolean allowReorderedResult)
static <T> java.util.Collection<T>
ParallelIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Same effect asIterate.select(Iterable, Predicate)
, but executed in parallel batches.static <T> java.util.Collection<T>
ParallelIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, boolean allowReorderedResult)
Same effect asIterate.select(Iterable, Predicate)
, but executed in parallel batches, and with a potentially reordered result.static <T,R extends java.util.Collection<T>>
RParallelIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, boolean allowReorderedResult)
Same effect asIterate.select(Iterable, Predicate)
, but executed in parallel batches, and writing output into the specified collection.static <T,R extends java.util.Collection<T>>
RParallelIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target, int batchSize, java.util.concurrent.Executor executor, boolean allowReorderedResult)
Same effect asIterate.select(Iterable, Predicate)
, but executed in parallel batches, and writing output into the specified collection.Constructors in org.eclipse.collections.impl.parallel with parameters of type Predicate Constructor Description CollectIfProcedureFactory(Function<? super T,V> function, Predicate<? super T> predicate, int newTaskSize)
CountProcedureFactory(Predicate<? super T> predicate)
FastListCollectIfProcedureFactory(Function<? super T,V> function, Predicate<? super T> predicate, int newTaskSize)
FastListRejectProcedureFactory(Predicate<? super T> newPredicate, int newInitialCapacity)
FastListSelectProcedureFactory(Predicate<? super T> newPredicate, int newInitialCapacity)
RejectProcedureFactory(Predicate<? super T> newPredicate, int newInitialCapacity)
SelectProcedureFactory(Predicate<? super T> newPredicate, int newInitialCapacity)
-
Uses of Predicate in org.eclipse.collections.impl.partition.stack
Fields in org.eclipse.collections.impl.partition.stack declared as Predicate Modifier and Type Field Description private Predicate<? super T>
PartitionArrayStack.PartitionProcedure. predicate
Constructors in org.eclipse.collections.impl.partition.stack with parameters of type Predicate Constructor Description PartitionProcedure(Predicate<? super T> predicate, PartitionArrayStack<T> partitionMutableStack)
-
Uses of Predicate in org.eclipse.collections.impl.set
Methods in org.eclipse.collections.impl.set with parameters of type Predicate Modifier and Type Method Description boolean
AbstractUnifiedSet. allSatisfy(Predicate<? super T> predicate)
boolean
AbstractUnifiedSet. anySatisfy(Predicate<? super T> predicate)
<V> UnifiedSet<V>
AbstractUnifiedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
T
AbstractUnifiedSet. detect(Predicate<? super T> predicate)
protected abstract T
AbstractUnifiedSet. detect(Predicate<? super T> predicate, int start, int end)
java.util.Optional<T>
AbstractUnifiedSet. detectOptional(Predicate<? super T> predicate)
protected abstract java.util.Optional<T>
AbstractUnifiedSet. detectOptional(Predicate<? super T> predicate, int start, int end)
boolean
AbstractUnifiedSet. noneSatisfy(Predicate<? super T> predicate)
protected boolean
AbstractUnifiedSet. shortCircuit(Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd)
protected abstract boolean
AbstractUnifiedSet. shortCircuit(Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd, int start, int end)
-
Uses of Predicate in org.eclipse.collections.impl.set.fixed
Methods in org.eclipse.collections.impl.set.fixed with parameters of type Predicate Modifier and Type Method Description boolean
AbstractMemoryEfficientMutableSet. removeIf(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type Predicate Modifier and Type Method Description boolean
ImmutableEmptySet. allSatisfy(Predicate<? super T> predicate)
boolean
ImmutableEmptySet. anySatisfy(Predicate<? super T> predicate)
<V> ImmutableSet<V>
AbstractImmutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ImmutableSet<V>
ImmutableEmptySet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableEmptySet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
int
ImmutableEmptySet. count(Predicate<? super T> predicate)
T
ImmutableEmptySet. detect(Predicate<? super T> predicate)
T
ImmutableEmptySet. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
java.util.Optional<T>
ImmutableEmptySet. detectOptional(Predicate<? super T> predicate)
boolean
ImmutableEmptySet. noneSatisfy(Predicate<? super T> predicate)
PartitionImmutableSet<T>
AbstractImmutableSet. partition(Predicate<? super T> predicate)
PartitionImmutableSet<T>
ImmutableEmptySet. partition(Predicate<? super T> predicate)
ImmutableSet<T>
AbstractImmutableSet. reject(Predicate<? super T> predicate)
ImmutableSet<T>
ImmutableEmptySet. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RImmutableEmptySet. reject(Predicate<? super T> predicate, R target)
ImmutableSet<T>
AbstractImmutableSet. select(Predicate<? super T> predicate)
ImmutableSet<T>
ImmutableEmptySet. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RImmutableEmptySet. select(Predicate<? super T> predicate, R target)
-
Uses of Predicate in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type Predicate Modifier and Type Method Description boolean
UnifiedSet.UnifiedSetParallelUnsortedIterable. allSatisfy(Predicate<? super T> predicate)
boolean
UnifiedSet.UnifiedUnsortedSetBatch. allSatisfy(Predicate<? super T> predicate)
boolean
UnifiedSet.UnifiedSetParallelUnsortedIterable. anySatisfy(Predicate<? super T> predicate)
boolean
UnifiedSet.UnifiedUnsortedSetBatch. anySatisfy(Predicate<? super T> predicate)
private java.lang.Object
UnifiedSet. chainedDetect(UnifiedSet.ChainedBucket bucket, Predicate<? super T> predicate)
private boolean
UnifiedSet. chainedShortCircuit(UnifiedSet.ChainedBucket bucket, Predicate<? super T> predicate, boolean expected)
<V> MutableSet<V>
AbstractMutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableSet<V>
MultiReaderUnifiedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableSet<V>
MultiReaderUnifiedSet.UntouchableMutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableSet<V>
SetAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableSet<V>
SynchronizedMutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableSet<V>
UnmodifiableMutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
protected T
UnifiedSet. detect(Predicate<? super T> predicate, int start, int end)
T
UnifiedSet.UnifiedSetParallelUnsortedIterable. detect(Predicate<? super T> predicate)
T
UnifiedSet.UnifiedUnsortedSetBatch. detect(Predicate<? super T> predicate)
protected java.util.Optional<T>
UnifiedSet. detectOptional(Predicate<? super T> predicate, int start, int end)
PartitionMutableSet<T>
AbstractMutableSet. partition(Predicate<? super T> predicate)
PartitionMutableSet<T>
MultiReaderUnifiedSet. partition(Predicate<? super T> predicate)
PartitionMutableSet<T>
MultiReaderUnifiedSet.UntouchableMutableSet. partition(Predicate<? super T> predicate)
PartitionMutableSet<T>
SetAdapter. partition(Predicate<? super T> predicate)
PartitionMutableSet<T>
SynchronizedMutableSet. partition(Predicate<? super T> predicate)
PartitionMutableSet<T>
UnifiedSet. partition(Predicate<? super T> predicate)
PartitionMutableSet<T>
UnmodifiableMutableSet. partition(Predicate<? super T> predicate)
MutableSet<T>
AbstractMutableSet. reject(Predicate<? super T> predicate)
MutableSet<T>
MultiReaderUnifiedSet. reject(Predicate<? super T> predicate)
MutableSet<T>
MultiReaderUnifiedSet.UntouchableMutableSet. reject(Predicate<? super T> predicate)
MutableSet<T>
SetAdapter. reject(Predicate<? super T> predicate)
MutableSet<T>
SynchronizedMutableSet. reject(Predicate<? super T> predicate)
UnifiedSet<T>
UnifiedSet. reject(Predicate<? super T> predicate)
MutableSet<T>
UnmodifiableMutableSet. reject(Predicate<? super T> predicate)
MutableSet<T>
AbstractMutableSet. select(Predicate<? super T> predicate)
MutableSet<T>
MultiReaderUnifiedSet. select(Predicate<? super T> predicate)
MutableSet<T>
MultiReaderUnifiedSet.UntouchableMutableSet. select(Predicate<? super T> predicate)
MutableSet<T>
SetAdapter. select(Predicate<? super T> predicate)
MutableSet<T>
SynchronizedMutableSet. select(Predicate<? super T> predicate)
UnifiedSet<T>
UnifiedSet. select(Predicate<? super T> predicate)
UnsortedSetBatch<T>
UnifiedSet.UnifiedUnsortedSetBatch. select(Predicate<? super T> predicate)
MutableSet<T>
UnmodifiableMutableSet. select(Predicate<? super T> predicate)
protected boolean
UnifiedSet. shortCircuit(Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd, int start, int end)
-
Uses of Predicate in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type Predicate Modifier and Type Method Description boolean
ImmutableTreeSet.ImmutableTreeSetBatch. allSatisfy(Predicate<? super T> predicate)
boolean
ImmutableTreeSet.SortedSetIterableParallelIterable. allSatisfy(Predicate<? super T> predicate)
boolean
ImmutableTreeSet.ImmutableTreeSetBatch. anySatisfy(Predicate<? super T> predicate)
boolean
ImmutableTreeSet.SortedSetIterableParallelIterable. anySatisfy(Predicate<? super T> predicate)
<V> ImmutableList<V>
AbstractImmutableSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
int
ImmutableTreeSet.ImmutableTreeSetBatch. count(Predicate<? super T> predicate)
T
ImmutableTreeSet.ImmutableTreeSetBatch. detect(Predicate<? super T> predicate)
T
ImmutableTreeSet.SortedSetIterableParallelIterable. detect(Predicate<? super T> predicate)
int
AbstractImmutableSortedSet. detectIndex(Predicate<? super T> predicate)
int
ImmutableTreeSet. detectIndex(Predicate<? super T> predicate)
int
AbstractImmutableSortedSet. detectLastIndex(Predicate<? super T> predicate)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. dropWhile(Predicate<? super T> predicate)
PartitionImmutableSortedSet<T>
AbstractImmutableSortedSet. partition(Predicate<? super T> predicate)
PartitionImmutableSortedSet<T>
AbstractImmutableSortedSet. partitionWhile(Predicate<? super T> predicate)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. reject(Predicate<? super T> predicate)
ImmutableSortedSet<T>
ImmutableEmptySortedSet. reject(Predicate<? super T> predicate)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. select(Predicate<? super T> predicate)
ImmutableSortedSet<T>
ImmutableEmptySortedSet. select(Predicate<? super T> predicate)
SortedSetBatch<T>
ImmutableTreeSet.ImmutableTreeSetBatch. select(Predicate<? super T> predicate)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type Predicate Modifier and Type Method Description <V> MutableList<V>
SortedSetAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableList<V>
SynchronizedSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableList<V>
TreeSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> MutableList<V>
UnmodifiableSortedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
int
SortedSetAdapter. detectIndex(Predicate<? super T> predicate)
int
SynchronizedSortedSet. detectIndex(Predicate<? super T> predicate)
int
TreeSortedSet. detectIndex(Predicate<? super T> predicate)
int
UnmodifiableSortedSet. detectIndex(Predicate<? super T> predicate)
int
SortedSetAdapter. detectLastIndex(Predicate<? super T> predicate)
int
SynchronizedSortedSet. detectLastIndex(Predicate<? super T> predicate)
int
TreeSortedSet. detectLastIndex(Predicate<? super T> predicate)
int
UnmodifiableSortedSet. detectLastIndex(Predicate<? super T> predicate)
MutableSortedSet<T>
SortedSetAdapter. dropWhile(Predicate<? super T> predicate)
MutableSortedSet<T>
SynchronizedSortedSet. dropWhile(Predicate<? super T> predicate)
MutableSortedSet<T>
TreeSortedSet. dropWhile(Predicate<? super T> predicate)
MutableSortedSet<T>
UnmodifiableSortedSet. dropWhile(Predicate<? super T> predicate)
PartitionMutableSortedSet<T>
SortedSetAdapter. partition(Predicate<? super T> predicate)
PartitionMutableSortedSet<T>
SynchronizedSortedSet. partition(Predicate<? super T> predicate)
PartitionMutableSortedSet<T>
TreeSortedSet. partition(Predicate<? super T> predicate)
PartitionMutableSortedSet<T>
UnmodifiableSortedSet. partition(Predicate<? super T> predicate)
PartitionMutableSortedSet<T>
SortedSetAdapter. partitionWhile(Predicate<? super T> predicate)
PartitionMutableSortedSet<T>
SynchronizedSortedSet. partitionWhile(Predicate<? super T> predicate)
PartitionMutableSortedSet<T>
TreeSortedSet. partitionWhile(Predicate<? super T> predicate)
PartitionMutableSortedSet<T>
UnmodifiableSortedSet. partitionWhile(Predicate<? super T> predicate)
MutableSortedSet<T>
SortedSetAdapter. reject(Predicate<? super T> predicate)
MutableSortedSet<T>
SynchronizedSortedSet. reject(Predicate<? super T> predicate)
TreeSortedSet<T>
TreeSortedSet. reject(Predicate<? super T> predicate)
MutableSortedSet<T>
UnmodifiableSortedSet. reject(Predicate<? super T> predicate)
MutableSortedSet<T>
SortedSetAdapter. select(Predicate<? super T> predicate)
MutableSortedSet<T>
SynchronizedSortedSet. select(Predicate<? super T> predicate)
TreeSortedSet<T>
TreeSortedSet. select(Predicate<? super T> predicate)
MutableSortedSet<T>
UnmodifiableSortedSet. select(Predicate<? super T> predicate)
MutableSortedSet<T>
SortedSetAdapter. takeWhile(Predicate<? super T> predicate)
MutableSortedSet<T>
SynchronizedSortedSet. takeWhile(Predicate<? super T> predicate)
MutableSortedSet<T>
TreeSortedSet. takeWhile(Predicate<? super T> predicate)
MutableSortedSet<T>
UnmodifiableSortedSet. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.set.strategy.mutable
Methods in org.eclipse.collections.impl.set.strategy.mutable with parameters of type Predicate Modifier and Type Method Description boolean
UnifiedSetWithHashingStrategy.UnifiedSetParallelUnsortedIterable. allSatisfy(Predicate<? super T> predicate)
boolean
UnifiedSetWithHashingStrategy.UnifiedUnsortedSetBatch. allSatisfy(Predicate<? super T> predicate)
boolean
UnifiedSetWithHashingStrategy.UnifiedSetParallelUnsortedIterable. anySatisfy(Predicate<? super T> predicate)
boolean
UnifiedSetWithHashingStrategy.UnifiedUnsortedSetBatch. anySatisfy(Predicate<? super T> predicate)
private java.lang.Object
UnifiedSetWithHashingStrategy. chainedDetect(UnifiedSetWithHashingStrategy.ChainedBucket bucket, Predicate<? super T> predicate)
private boolean
UnifiedSetWithHashingStrategy. chainedShortCircuit(UnifiedSetWithHashingStrategy.ChainedBucket bucket, Predicate<? super T> predicate, boolean expected)
protected T
UnifiedSetWithHashingStrategy. detect(Predicate<? super T> predicate, int start, int end)
T
UnifiedSetWithHashingStrategy.UnifiedSetParallelUnsortedIterable. detect(Predicate<? super T> predicate)
T
UnifiedSetWithHashingStrategy.UnifiedUnsortedSetBatch. detect(Predicate<? super T> predicate)
protected java.util.Optional<T>
UnifiedSetWithHashingStrategy. detectOptional(Predicate<? super T> predicate, int start, int end)
LazyIterable<T>
UnifiedSetWithHashingStrategy. lazyReject(Predicate<? super T> predicate)
Deprecated.since 3.0.LazyIterable<T>
UnifiedSetWithHashingStrategy. lazySelect(Predicate<? super T> predicate)
Deprecated.since 3.0.PartitionMutableSet<T>
UnifiedSetWithHashingStrategy. partition(Predicate<? super T> predicate)
UnifiedSetWithHashingStrategy<T>
UnifiedSetWithHashingStrategy. reject(Predicate<? super T> predicate)
UnifiedSetWithHashingStrategy<T>
UnifiedSetWithHashingStrategy. select(Predicate<? super T> predicate)
UnsortedSetBatch<T>
UnifiedSetWithHashingStrategy.UnifiedUnsortedSetBatch. select(Predicate<? super T> predicate)
protected boolean
UnifiedSetWithHashingStrategy. shortCircuit(Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd, int start, int end)
-
Uses of Predicate in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type Predicate Modifier and Type Method Description boolean
ImmutableArrayStack. allSatisfy(Predicate<? super T> predicate)
Deprecated.boolean
ImmutableArrayStack. anySatisfy(Predicate<? super T> predicate)
Deprecated.<V> ImmutableStack<V>
ImmutableArrayStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
Deprecated.<V,R extends java.util.Collection<V>>
RImmutableArrayStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
Deprecated.<V> ImmutableStack<V>
ImmutableEmptyStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableEmptyStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
<V> ImmutableStack<V>
ImmutableNotEmptyStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
int
ImmutableArrayStack. count(Predicate<? super T> predicate)
Deprecated.int
ImmutableEmptyStack. count(Predicate<? super T> predicate)
T
ImmutableArrayStack. detect(Predicate<? super T> predicate)
Deprecated.T
ImmutableEmptyStack. detect(Predicate<? super T> predicate)
T
ImmutableArrayStack. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
Deprecated.T
ImmutableEmptyStack. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
int
ImmutableArrayStack. detectIndex(Predicate<? super T> predicate)
Deprecated.int
ImmutableEmptyStack. detectIndex(Predicate<? super T> predicate)
int
ImmutableNotEmptyStack. detectIndex(Predicate<? super T> predicate)
java.util.Optional<T>
ImmutableArrayStack. detectOptional(Predicate<? super T> predicate)
Deprecated.java.util.Optional<T>
ImmutableEmptyStack. detectOptional(Predicate<? super T> predicate)
ImmutableStack<T>
ImmutableArrayStack. dropWhile(Predicate<? super T> predicate)
Deprecated.ImmutableStack<T>
ImmutableEmptyStack. dropWhile(Predicate<? super T> predicate)
ImmutableStack<T>
ImmutableNotEmptyStack. dropWhile(Predicate<? super T> predicate)
boolean
ImmutableArrayStack. noneSatisfy(Predicate<? super T> predicate)
Deprecated.PartitionImmutableStack<T>
ImmutableArrayStack. partition(Predicate<? super T> predicate)
Deprecated.PartitionImmutableStack<T>
ImmutableEmptyStack. partition(Predicate<? super T> predicate)
PartitionImmutableStack<T>
ImmutableNotEmptyStack. partition(Predicate<? super T> predicate)
PartitionImmutableStack<T>
ImmutableArrayStack. partitionWhile(Predicate<? super T> predicate)
Deprecated.PartitionImmutableStack<T>
ImmutableEmptyStack. partitionWhile(Predicate<? super T> predicate)
PartitionImmutableStack<T>
ImmutableNotEmptyStack. partitionWhile(Predicate<? super T> predicate)
ImmutableStack<T>
ImmutableArrayStack. reject(Predicate<? super T> predicate)
Deprecated.<R extends java.util.Collection<T>>
RImmutableArrayStack. reject(Predicate<? super T> predicate, R target)
Deprecated.ImmutableStack<T>
ImmutableEmptyStack. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RImmutableEmptyStack. reject(Predicate<? super T> predicate, R target)
ImmutableStack<T>
ImmutableNotEmptyStack. reject(Predicate<? super T> predicate)
ImmutableStack<T>
ImmutableArrayStack. select(Predicate<? super T> predicate)
Deprecated.<R extends java.util.Collection<T>>
RImmutableArrayStack. select(Predicate<? super T> predicate, R target)
Deprecated.ImmutableStack<T>
ImmutableEmptyStack. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RImmutableEmptyStack. select(Predicate<? super T> predicate, R target)
ImmutableStack<T>
ImmutableNotEmptyStack. select(Predicate<? super T> predicate)
ImmutableStack<T>
ImmutableArrayStack. takeWhile(Predicate<? super T> predicate)
Deprecated.ImmutableStack<T>
ImmutableEmptyStack. takeWhile(Predicate<? super T> predicate)
ImmutableStack<T>
ImmutableNotEmptyStack. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type Predicate Modifier and Type Method Description boolean
ArrayStack. allSatisfy(Predicate<? super T> predicate)
boolean
SynchronizedStack. allSatisfy(Predicate<? super T> predicate)
boolean
UnmodifiableStack. allSatisfy(Predicate<? super T> predicate)
boolean
ArrayStack. anySatisfy(Predicate<? super T> predicate)
boolean
SynchronizedStack. anySatisfy(Predicate<? super T> predicate)
boolean
UnmodifiableStack. anySatisfy(Predicate<? super T> predicate)
<V> ArrayStack<V>
ArrayStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RArrayStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
<V> MutableStack<V>
SynchronizedStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RSynchronizedStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
<V> MutableStack<V>
UnmodifiableStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RUnmodifiableStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
int
ArrayStack. count(Predicate<? super T> predicate)
int
SynchronizedStack. count(Predicate<? super T> predicate)
int
UnmodifiableStack. count(Predicate<? super T> predicate)
T
ArrayStack. detect(Predicate<? super T> predicate)
T
SynchronizedStack. detect(Predicate<? super T> predicate)
T
UnmodifiableStack. detect(Predicate<? super T> predicate)
T
ArrayStack. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
T
SynchronizedStack. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
T
UnmodifiableStack. detectIfNone(Predicate<? super T> predicate, Function0<? extends T> function)
int
ArrayStack. detectIndex(Predicate<? super T> predicate)
int
SynchronizedStack. detectIndex(Predicate<? super T> predicate)
int
UnmodifiableStack. detectIndex(Predicate<? super T> predicate)
java.util.Optional<T>
ArrayStack. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
SynchronizedStack. detectOptional(Predicate<? super T> predicate)
java.util.Optional<T>
UnmodifiableStack. detectOptional(Predicate<? super T> predicate)
MutableStack<T>
ArrayStack. dropWhile(Predicate<? super T> predicate)
MutableStack<T>
SynchronizedStack. dropWhile(Predicate<? super T> predicate)
MutableStack<T>
UnmodifiableStack. dropWhile(Predicate<? super T> predicate)
boolean
ArrayStack. noneSatisfy(Predicate<? super T> predicate)
boolean
SynchronizedStack. noneSatisfy(Predicate<? super T> predicate)
boolean
UnmodifiableStack. noneSatisfy(Predicate<? super T> predicate)
PartitionMutableStack<T>
ArrayStack. partition(Predicate<? super T> predicate)
PartitionMutableStack<T>
SynchronizedStack. partition(Predicate<? super T> predicate)
PartitionMutableStack<T>
UnmodifiableStack. partition(Predicate<? super T> predicate)
PartitionMutableStack<T>
ArrayStack. partitionWhile(Predicate<? super T> predicate)
PartitionMutableStack<T>
SynchronizedStack. partitionWhile(Predicate<? super T> predicate)
PartitionMutableStack<T>
UnmodifiableStack. partitionWhile(Predicate<? super T> predicate)
ArrayStack<T>
ArrayStack. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RArrayStack. reject(Predicate<? super T> predicate, R target)
MutableStack<T>
SynchronizedStack. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RSynchronizedStack. reject(Predicate<? super T> predicate, R target)
MutableStack<T>
UnmodifiableStack. reject(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RUnmodifiableStack. reject(Predicate<? super T> predicate, R target)
ArrayStack<T>
ArrayStack. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RArrayStack. select(Predicate<? super T> predicate, R target)
MutableStack<T>
SynchronizedStack. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RSynchronizedStack. select(Predicate<? super T> predicate, R target)
MutableStack<T>
UnmodifiableStack. select(Predicate<? super T> predicate)
<R extends java.util.Collection<T>>
RUnmodifiableStack. select(Predicate<? super T> predicate, R target)
MutableStack<T>
ArrayStack. takeWhile(Predicate<? super T> predicate)
MutableStack<T>
SynchronizedStack. takeWhile(Predicate<? super T> predicate)
MutableStack<T>
UnmodifiableStack. takeWhile(Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test with parameters of type Predicate Modifier and Type Method Description static <T> void
Verify. assertAllSatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> void
Verify. assertAllSatisfy(java.lang.String message, java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <K,V>
voidVerify. assertAllSatisfy(java.util.Map<K,V> map, Predicate<? super V> predicate)
static <T> void
Verify. assertAnySatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> void
Verify. assertAnySatisfy(java.lang.String message, java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <K,V>
voidVerify. assertAnySatisfy(java.util.Map<K,V> map, Predicate<? super V> predicate)
static <T> void
Verify. assertCount(int expectedCount, java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> void
Verify. assertNoneSatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> void
Verify. assertNoneSatisfy(java.lang.String message, java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <K,V>
voidVerify. assertNoneSatisfy(java.util.Map<K,V> map, Predicate<? super V> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type Predicate Modifier and Type Method Description static <T> boolean
ArrayIterate. allSatisfy(T[] objectArray, Predicate<? super T> predicate)
static <T> boolean
ArrayListIterate. allSatisfy(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> boolean
Iterate. allSatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Returns true if the predicate evaluates to true for every element of the iterable, or returns false.static <T> boolean
ListIterate. allSatisfy(java.util.List<T> list, Predicate<? super T> predicate)
static <K,V>
booleanMapIterate. allSatisfy(java.util.Map<K,V> map, Predicate<? super V> predicate)
static <T> boolean
ArrayIterate. anySatisfy(T[] objectArray, Predicate<? super T> predicate)
static <T> boolean
ArrayListIterate. anySatisfy(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> boolean
Iterate. anySatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Returns true if the predicate evaluates to true for any element of the iterable.static <T> boolean
ListIterate. anySatisfy(java.util.List<T> list, Predicate<? super T> predicate)
static <K,V>
booleanMapIterate. anySatisfy(java.util.Map<K,V> map, Predicate<? super V> predicate)
static <T,V>
MutableList<V>ArrayIterate. collectIf(T[] objectArray, Predicate<? super T> predicate, Function<? super T,? extends V> function)
static <T,V,R extends java.util.Collection<V>>
RArrayIterate. collectIf(T[] objectArray, Predicate<? super T> predicate, Function<? super T,? extends V> function, R targetCollection)
static <T,A>
java.util.ArrayList<A>ArrayListIterate. collectIf(java.util.ArrayList<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function)
static <T,A,R extends java.util.Collection<A>>
RArrayListIterate. collectIf(java.util.ArrayList<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function, R targetCollection)
static <T,V>
java.util.Collection<V>Iterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,? extends V> function)
static <T,V,R extends java.util.Collection<V>>
RIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
static <T,V>
LazyIterable<V>LazyIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,? extends V> function)
Creates a deferred filtering and transforming iterable for the specified iterable.static <T,A>
MutableList<A>ListIterate. collectIf(java.util.List<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function)
static <T,A,R extends java.util.Collection<A>>
RListIterate. collectIf(java.util.List<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function, R targetCollection)
static <T> int
ArrayIterate. count(T[] objectArray, Predicate<? super T> predicate)
static <T> int
ArrayListIterate. count(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> int
Iterate. count(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Returns the total number of elements that evaluate to true for the specified predicate.static <T> int
ListIterate. count(java.util.List<T> list, Predicate<? super T> predicate)
static <K,V>
intMapIterate. count(java.util.Map<K,V> map, Predicate<? super V> predicate)
static <T> T
ArrayIterate. detect(T[] objectArray, Predicate<? super T> predicate)
static <T> T
ArrayListIterate. detect(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> T
Iterate. detect(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Returns the first element of the iterable that evaluates to true for the specified predicate, or null if no element evaluates to true.static <T> T
ListIterate. detect(java.util.List<T> list, Predicate<? super T> predicate)
static <K,V>
VMapIterate. detect(java.util.Map<K,V> map, Predicate<? super V> predicate)
static <T> T
ArrayIterate. detectIfNone(T[] objectArray, Predicate<? super T> predicate, T ifNone)
static <T> T
ArrayListIterate. detectIfNone(java.util.ArrayList<T> list, Predicate<? super T> predicate, T ifNone)
static <T> T
Iterate. detectIfNone(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, T ifNone)
Returns the first element of the iterable that evaluates to true for the specified predicate, or returns the result ifNone if no element evaluates to true.static <T> T
ListIterate. detectIfNone(java.util.List<T> list, Predicate<? super T> predicate, T ifNone)
static <K,V>
VMapIterate. detectIfNone(java.util.Map<K,V> map, Predicate<? super V> predicate, V ifNone)
static <T> int
ArrayIterate. detectIndex(T[] objectArray, Predicate<? super T> predicate)
Returns the first index where the predicate evaluates totrue
.static <T> int
ArrayListIterate. detectIndex(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> int
Iterate. detectIndex(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Searches for the first occurrence where the predicate evaluates to true, returns -1 if the predicate does not evaluate to true.static <T> int
ListIterate. detectIndex(java.util.List<T> list, Predicate<? super T> predicate)
Searches for the first index where the predicate evaluates to true.static <T> int
ArrayIterate. detectLastIndex(T[] objectArray, Predicate<? super T> predicate)
Returns the last index where the predicate evaluates totrue
.static <T> int
ArrayListIterate. detectLastIndex(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> int
ListIterate. detectLastIndex(java.util.List<T> list, Predicate<? super T> predicate)
Returns the last index where the predicate evaluates to true.static <T> java.util.Optional<T>
ArrayIterate. detectOptional(T[] objectArray, Predicate<? super T> predicate)
static <T> java.util.Optional<T>
ArrayListIterate. detectOptional(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> java.util.Optional<T>
Iterate. detectOptional(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Returns the first element of the iterable that evaluates to true for the specified predicate as an Optional.static <T> java.util.Optional<T>
ListIterate. detectOptional(java.util.List<T> list, Predicate<? super T> predicate)
static <K,V>
java.util.Optional<V>MapIterate. detectOptional(java.util.Map<K,V> map, Predicate<? super V> predicate)
static <T> MutableList<T>
ArrayListIterate. dropWhile(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> LazyIterable<T>
LazyIterate. dropWhile(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Creates a deferred dropWhile iterable for the specified iterable using the specified count as the size to drop.static <T> MutableList<T>
ListIterate. dropWhile(java.util.List<T> list, Predicate<? super T> predicate)
static <IV,K,V>
IVMapIterate. injectIntoIf(IV initialValue, java.util.Map<K,V> map, Predicate<? super V> predicate, Function2<? super IV,? super V,? extends IV> function)
Same asMapIterate.injectInto(Object, Map, Function2)
, but only applies the value to the function if the predicate returns true for the value.static <T> boolean
ArrayIterate. noneSatisfy(T[] objectArray, Predicate<? super T> predicate)
static <T> boolean
ArrayListIterate. noneSatisfy(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> boolean
Iterate. noneSatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Returns true if the predicate evaluates to false for every element of the iterable, or returns false.static <T> boolean
ListIterate. noneSatisfy(java.util.List<T> list, Predicate<? super T> predicate)
static <K,V>
booleanMapIterate. noneSatisfy(java.util.Map<K,V> map, Predicate<? super V> predicate)
static <T> PartitionFastList<T>
ArrayIterate. partition(T[] array, Predicate<? super T> predicate)
static <T> PartitionMutableList<T>
ArrayListIterate. partition(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> PartitionIterable<T>
Iterate. partition(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Filters a collection into a PartitionIterable based on a predicate.static <T> PartitionMutableList<T>
ListIterate. partition(java.util.List<T> list, Predicate<? super T> predicate)
static <T> PartitionMutableList<T>
ArrayListIterate. partitionWhile(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> PartitionMutableList<T>
ListIterate. partitionWhile(java.util.List<T> list, Predicate<? super T> predicate)
static <T> MutableList<T>
ArrayIterate. reject(T[] objectArray, Predicate<? super T> predicate)
static <T,R extends java.util.Collection<T>>
RArrayIterate. reject(T[] objectArray, Predicate<? super T> predicate, R targetCollection)
static <T> java.util.ArrayList<T>
ArrayListIterate. reject(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T,R extends java.util.Collection<T>>
RArrayListIterate. reject(java.util.ArrayList<T> list, Predicate<? super T> predicate, R targetCollection)
static <T> java.util.Collection<T>
Iterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Returns all elements of the iterable that evaluate to false for the specified predicate.static <T,R extends java.util.Collection<T>>
RIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R targetCollection)
Same as the reject method with one parameter but uses the specified target collection for the results.static <T> LazyIterable<T>
LazyIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Creates a deferred negative filtering iterable for the specified iterable.static <T> MutableList<T>
ListIterate. reject(java.util.List<T> list, Predicate<? super T> predicate)
static <T,R extends java.util.Collection<T>>
RListIterate. reject(java.util.List<T> list, Predicate<? super T> predicate, R targetCollection)
static <K,V>
MutableList<V>MapIterate. reject(java.util.Map<K,V> map, Predicate<? super V> predicate)
static <K,V,R extends java.util.Collection<V>>
RMapIterate. reject(java.util.Map<K,V> map, Predicate<? super V> predicate, R targetCollection)
static <T> boolean
ArrayListIterate. removeIf(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> boolean
Iterate. removeIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Removes all elements from the iterable that evaluate to true for the specified predicate.static <T> boolean
ListIterate. removeIf(java.util.List<T> list, Predicate<? super T> predicate)
static <T> boolean
ListIterate. removeIf(java.util.List<T> list, Predicate<? super T> predicate, Procedure<? super T> procedure)
static <T> MutableList<T>
ArrayIterate. select(T[] objectArray, Predicate<? super T> predicate)
static <T,R extends java.util.Collection<T>>
RArrayIterate. select(T[] objectArray, Predicate<? super T> predicate, R targetCollection)
static <T> java.util.ArrayList<T>
ArrayListIterate. select(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T,R extends java.util.Collection<T>>
RArrayListIterate. select(java.util.ArrayList<T> list, Predicate<? super T> predicate, R targetCollection)
static <T> java.util.Collection<T>
Iterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Returns a new collection with only the elements that evaluated to true for the specified predicate.static <T,R extends java.util.Collection<T>>
RIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R targetCollection)
Same as the select method with two parameters but uses the specified target collectionstatic <T> LazyIterable<T>
LazyIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Creates a deferred filtering iterable for the specified iterable.static <T> MutableList<T>
ListIterate. select(java.util.List<T> list, Predicate<? super T> predicate)
static <T,R extends java.util.Collection<T>>
RListIterate. select(java.util.List<T> list, Predicate<? super T> predicate, R targetCollection)
static <K,V>
MutableList<V>MapIterate. select(java.util.Map<K,V> map, Predicate<? super V> predicate)
static <K,V,R extends java.util.Collection<V>>
RMapIterate. select(java.util.Map<K,V> map, Predicate<? super V> predicate, R targetCollection)
static <K,V>
MutableMap<K,V>MapIterate. selectMapOnKey(java.util.Map<K,V> map, Predicate<? super K> predicate)
For each key of the source map, the Predicate is evaluated.static <K,V>
MutableMap<K,V>MapIterate. selectMapOnValue(java.util.Map<K,V> map, Predicate<? super V> predicate)
For each value of the source map, the Predicate is evaluated.static <T> MutableList<T>
ArrayListIterate. takeWhile(java.util.ArrayList<T> list, Predicate<? super T> predicate)
static <T> LazyIterable<T>
LazyIterate. takeWhile(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
Creates a deferred takeWhile iterable for the specified iterable using the specified predicate.static <T> MutableList<T>
ListIterate. takeWhile(java.util.List<T> list, Predicate<? super T> predicate)
-
Uses of Predicate in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type Predicate Modifier and Type Method Description static <T> boolean
InternalArrayIterate. allSatisfy(T[] array, int size, Predicate<? super T> predicate)
static <T> boolean
IterableIterate. allSatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> boolean
IteratorIterate. allSatisfy(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
static <T> boolean
RandomAccessListIterate. allSatisfy(java.util.List<T> list, Predicate<? super T> predicate)
static <T> boolean
InternalArrayIterate. anySatisfy(T[] array, int size, Predicate<? super T> predicate)
static <T> boolean
IterableIterate. anySatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> boolean
IteratorIterate. anySatisfy(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
static <T> boolean
RandomAccessListIterate. anySatisfy(java.util.List<T> list, Predicate<? super T> predicate)
static <T,V,R extends java.util.Collection<V>>
RInternalArrayIterate. collectIf(T[] array, int size, Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
static <T,V>
MutableList<V>IterableIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,? extends V> function)
static <T,V,R extends java.util.Collection<V>>
RIterableIterate. collectIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T,? extends V> function, R targetCollection)
static <T,V,R extends java.util.Collection<V>>
RIteratorIterate. collectIf(java.util.Iterator<T> iterator, Predicate<? super T> predicate, Function<? super T,? extends V> function, R targetCollection)
static <T,A>
MutableList<A>RandomAccessListIterate. collectIf(java.util.List<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function)
static <T,A,R extends java.util.Collection<A>>
RRandomAccessListIterate. collectIf(java.util.List<T> list, Predicate<? super T> predicate, Function<? super T,? extends A> function, R targetCollection)
static <T> int
InternalArrayIterate. count(T[] array, int size, Predicate<? super T> predicate)
static <T> int
IterableIterate. count(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> int
IteratorIterate. count(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
static <T> int
RandomAccessListIterate. count(java.util.List<T> list, Predicate<? super T> predicate)
static <T> T
InternalArrayIterate. detect(T[] array, int size, Predicate<? super T> predicate)
static <T> T
IterableIterate. detect(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> T
IteratorIterate. detect(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
static <T> T
RandomAccessListIterate. detect(java.util.List<T> list, Predicate<? super T> predicate)
static <T> int
InternalArrayIterate. detectIndex(T[] objectArray, int size, Predicate<? super T> predicate)
static <T> int
IterableIterate. detectIndex(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> int
IteratorIterate. detectIndex(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
static <T> int
RandomAccessListIterate. detectIndex(java.util.List<T> list, Predicate<? super T> predicate)
Searches for the first occurrence where the predicate evaluates to true.static <T> int
InternalArrayIterate. detectLastIndex(T[] objectArray, int size, Predicate<? super T> predicate)
static <T> int
RandomAccessListIterate. detectLastIndex(java.util.List<T> list, Predicate<? super T> predicate)
static <T> java.util.Optional<T>
InternalArrayIterate. detectOptional(T[] array, int size, Predicate<? super T> predicate)
static <T> java.util.Optional<T>
IterableIterate. detectOptional(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> java.util.Optional<T>
IteratorIterate. detectOptional(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
static <T> java.util.Optional<T>
RandomAccessListIterate. detectOptional(java.util.List<T> list, Predicate<? super T> predicate)
static <T,R extends MutableCollection<T>>
RIterableIterate. dropWhile(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target)
static <T,R extends MutableCollection<T>>
RIteratorIterate. dropWhile(java.util.Iterator<T> iterator, Predicate<? super T> predicate, R target)
static <T> MutableList<T>
RandomAccessListIterate. dropWhile(java.util.List<T> list, Predicate<? super T> predicate)
static <T> boolean
InternalArrayIterate. noneSatisfy(T[] array, int size, Predicate<? super T> predicate)
static <T> boolean
IterableIterate. noneSatisfy(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> boolean
IteratorIterate. noneSatisfy(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
static <T> boolean
RandomAccessListIterate. noneSatisfy(java.util.List<T> list, Predicate<? super T> predicate)
static <T> PartitionFastList<T>
InternalArrayIterate. partition(T[] array, int size, Predicate<? super T> predicate)
static <T> PartitionMutableList<T>
IterableIterate. partition(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> PartitionMutableList<T>
IteratorIterate. partition(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
static <T> PartitionMutableList<T>
RandomAccessListIterate. partition(java.util.List<T> list, Predicate<? super T> predicate)
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)
static <T> PartitionMutableList<T>
RandomAccessListIterate. partitionWhile(java.util.List<T> list, Predicate<? super T> predicate)
static <T,R extends java.util.Collection<T>>
RInternalArrayIterate. reject(T[] array, int size, Predicate<? super T> predicate, R target)
static <T> MutableList<T>
IterableIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T,R extends java.util.Collection<T>>
RIterableIterate. reject(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R targetCollection)
static <T,R extends java.util.Collection<T>>
RIteratorIterate. reject(java.util.Iterator<T> iterator, Predicate<? super T> predicate, R targetCollection)
static <T> MutableList<T>
RandomAccessListIterate. reject(java.util.List<T> list, Predicate<? super T> predicate)
static <T,R extends java.util.Collection<T>>
RRandomAccessListIterate. reject(java.util.List<T> list, Predicate<? super T> predicate, R targetCollection)
static <T> boolean
IterableIterate. removeIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T> boolean
IterableIterate. removeIf(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, Procedure<? super T> procedure)
static <T> boolean
IteratorIterate. removeIf(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
static <T> boolean
IteratorIterate. removeIf(java.util.Iterator<T> iterator, Predicate<? super T> predicate, Procedure<? super T> procedure)
static <T> boolean
RandomAccessListIterate. removeIf(java.util.List<T> list, Predicate<? super T> predicate)
static <T> boolean
RandomAccessListIterate. removeIf(java.util.List<T> list, Predicate<? super T> predicate, Procedure<? super T> procedure)
static <T,R extends java.util.Collection<T>>
RInternalArrayIterate. select(T[] array, int size, Predicate<? super T> predicate, R target)
static <T> MutableList<T>
IterableIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
static <T,R extends java.util.Collection<T>>
RIterableIterate. select(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R targetCollection)
static <T,R extends java.util.Collection<T>>
RIteratorIterate. select(java.util.Iterator<T> iterator, Predicate<? super T> predicate, R targetCollection)
static <T> MutableList<T>
RandomAccessListIterate. select(java.util.List<T> list, Predicate<? super T> predicate)
static <T,R extends java.util.Collection<T>>
RRandomAccessListIterate. select(java.util.List<T> list, Predicate<? super T> predicate, R targetCollection)
static <T> boolean
InternalArrayIterate. shortCircuit(T[] array, int size, Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd)
static <T> boolean
IteratorIterate. shortCircuit(java.util.Iterator<T> iterator, Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd)
static <T> boolean
RandomAccessListIterate. shortCircuit(java.util.List<T> list, Predicate<? super T> predicate, boolean expected, boolean onShortCircuit, boolean atEnd)
static <T,R extends MutableCollection<T>>
RIterableIterate. takeWhile(java.lang.Iterable<T> iterable, Predicate<? super T> predicate, R target)
static <T,R extends MutableCollection<T>>
RIteratorIterate. takeWhile(java.util.Iterator<T> iterator, Predicate<? super T> predicate, R target)
static <T> MutableList<T>
RandomAccessListIterate. takeWhile(java.util.List<T> list, Predicate<? super T> predicate)
-