Uses of Interface
org.littleshoot.util.Predicate

Packages that use Predicate
org.littleshoot.util   
 

Uses of Predicate in org.littleshoot.util
 

Methods in org.littleshoot.util with parameters of type Predicate
<T> boolean
CollectionUtilsImpl.matchesAll(Collection<? extends T> collection, Predicate<T> pred)
           
<T> boolean
CollectionUtils.matchesAll(Collection<? extends T> elements, Predicate<T> pred)
          Checks to see if all of the elements of the given Collection matches the predicate.
<T> boolean
CollectionUtilsImpl.matchesAny(Collection<? extends T> collection, Predicate<T> pred)
           
<T> boolean
CollectionUtils.matchesAny(Collection<? extends T> elements, Predicate<T> pred)
          Checks to see if any of the elements of the given Collection matches the predicate.
<T> Collection<T>
CollectionUtilsImpl.select(Collection<? extends T> collection, Predicate<T> predicate)
          Returns a collection of all of the elements in a given collection that satisfy a given predicate.
<T> Collection<T>
CollectionUtils.select(Collection<? extends T> collection, Predicate<T> predicate)
          Returns a collection of all of the elements in a given collection that satisfy a given predicate.
<T> void
CollectionUtilsImpl.select(Collection<? extends T> collection, Predicate<T> predicate, Collection<T> result)
          Adds all of the elements in a given collection that satisfy a given predicate to another given collection.
<T> void
CollectionUtils.select(Collection<? extends T> collection, Predicate<T> predicate, Collection<T> result)
          Adds all of the elements in a given collection that satisfy a given predicate to another given collection.
<T> T
CollectionUtilsImpl.selectFirst(Collection<? extends T> collection, Predicate<T> pred)
           
<T> T
CollectionUtils.selectFirst(Collection<? extends T> collection, Predicate<T> pred)
          Selects the first element matching the desired criteria, or null if no matching element exists.
<T> T
CollectionUtilsImpl.selectFirstSynchronized(Collection<? extends T> collection, Predicate<T> pred)
           
<T> T
CollectionUtils.selectFirstSynchronized(Collection<? extends T> collection, Predicate<T> pred)
          Selects the first element matching the desired criteria, or null if no matching element exists.
<T> boolean
CollectionUtilsImpl.synchronizedMatchesAny(Collection<? extends T> elements, Predicate<T> pred)
           
<T> boolean
CollectionUtils.synchronizedMatchesAny(Collection<? extends T> elements, Predicate<T> pred)
          Checks to see if any of the elements of the given Collection matches the predicate.
 



Copyright © 2011-2013 LittleShoot. All Rights Reserved.