|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Predicate | |
|---|---|
| org.littleshoot.util | |
| Uses of Predicate in org.littleshoot.util |
|---|
| Methods in org.littleshoot.util with parameters of type Predicate | ||
|---|---|---|
|
CollectionUtilsImpl.matchesAll(Collection<? extends T> collection,
Predicate<T> pred)
|
|
|
CollectionUtils.matchesAll(Collection<? extends T> elements,
Predicate<T> pred)
Checks to see if all of the elements of the given Collection
matches the predicate. |
|
|
CollectionUtilsImpl.matchesAny(Collection<? extends T> collection,
Predicate<T> pred)
|
|
|
CollectionUtils.matchesAny(Collection<? extends T> elements,
Predicate<T> pred)
Checks to see if any of the elements of the given Collection
matches the predicate. |
|
|
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. |
|
|
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. |
|
|
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. |
|
|
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. |
|
|
CollectionUtilsImpl.selectFirst(Collection<? extends T> collection,
Predicate<T> pred)
|
|
|
CollectionUtils.selectFirst(Collection<? extends T> collection,
Predicate<T> pred)
Selects the first element matching the desired criteria, or null if no matching element exists. |
|
|
CollectionUtilsImpl.selectFirstSynchronized(Collection<? extends T> collection,
Predicate<T> pred)
|
|
|
CollectionUtils.selectFirstSynchronized(Collection<? extends T> collection,
Predicate<T> pred)
Selects the first element matching the desired criteria, or null if no matching element exists. |
|
|
CollectionUtilsImpl.synchronizedMatchesAny(Collection<? extends T> elements,
Predicate<T> pred)
|
|
|
CollectionUtils.synchronizedMatchesAny(Collection<? extends T> elements,
Predicate<T> pred)
Checks to see if any of the elements of the given Collection
matches the predicate. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||