public final class Collections extends Object
Collection
s.Modifier and Type | Method and Description |
---|---|
static Collection<Object> |
found(Collection<?> target,
Object... objects)
Attempts to find the given objects in the given
, returning the ones that were
found. |
static Collection<Object> |
notFound(Collection<?> target,
Object... objects)
Attempts to find the given objects in the given
, returning the ones that were not
found. |
public static Collection<Object> notFound(Collection<?> target, Object... objects)
Collection
, returning the ones that were not
found.target
- the given Collection
.objects
- the elements to find in the given Collection
.Collection
.public static Collection<Object> found(Collection<?> target, Object... objects)
Collection
, returning the ones that were
found.target
- the given Collection
.objects
- the elements to find in the given Collection
.Collection
.Copyright © 2007-2013 FEST (Fixtures for Easy Software Testing). All Rights Reserved.