Package org.gradle.api
Interface NamedDomainObjectList<T>
-
- Type Parameters:
T
- The type of element in the set
- All Superinterfaces:
Collection<T>
,DomainObjectCollection<T>
,Iterable<T>
,List<T>
,NamedDomainObjectCollection<T>
- All Known Subinterfaces:
ArtifactRepositoryContainer
,RepositoryHandler
public interface NamedDomainObjectList<T> extends NamedDomainObjectCollection<T>, List<T>
A specialisation of
NamedDomainObjectCollection
that also implementsList
.All object equality is determined in terms of object names. That is, calling
remove()
with an object that is NOT equal to an existing object in terms ofequals
, but IS in terms of name equality will result in the existing collection item with the equal name being removed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<T>
findAll(Closure spec)
Returns a collection which contains the objects in this collection which meet the given closure specification.NamedDomainObjectList<T>
matching(Closure spec)
Returns a collection which contains the objects in this collection which meet the given closure specification.NamedDomainObjectList<T>
matching(Spec<? super T> spec)
Returns a collection which contains the objects in this collection which meet the given specification.<S extends T>
NamedDomainObjectList<S>withType(Class<S> type)
Returns a collection containing the objects in this collection of the given type.-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface org.gradle.api.DomainObjectCollection
all, all, whenObjectAdded, whenObjectAdded, whenObjectRemoved, whenObjectRemoved, withType, withType
-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-
-
-
Method Detail
-
withType
<S extends T> NamedDomainObjectList<S> withType(Class<S> type)
Returns a collection containing the objects in this collection of the given type. The returned collection is live, so that when matching objects are later added to this collection, they are also visible in the filtered collection.- Specified by:
withType
in interfaceDomainObjectCollection<T>
- Specified by:
withType
in interfaceNamedDomainObjectCollection<T>
- Parameters:
type
- The type of objects to find.- Returns:
- The matching objects. Returns an empty collection if there are no such objects in this collection.
-
matching
NamedDomainObjectList<T> matching(Spec<? super T> spec)
Returns a collection which contains the objects in this collection which meet the given specification. The returned collection is live, so that when matching objects are added to this collection, they are also visible in the filtered collection.- Specified by:
matching
in interfaceDomainObjectCollection<T>
- Specified by:
matching
in interfaceNamedDomainObjectCollection<T>
- Parameters:
spec
- The specification to use.- Returns:
- The collection of matching objects. Returns an empty collection if there are no such objects in this collection.
-
matching
NamedDomainObjectList<T> matching(Closure spec)
Returns a collection which contains the objects in this collection which meet the given closure specification. The returned collection is live, so that when matching objects are added to this collection, they are also visible in the filtered collection.- Specified by:
matching
in interfaceDomainObjectCollection<T>
- Specified by:
matching
in interfaceNamedDomainObjectCollection<T>
- Parameters:
spec
- The specification to use. The closure gets a collection element as an argument.- Returns:
- The collection of matching objects. Returns an empty collection if there are no such objects in this collection.
-
findAll
List<T> findAll(Closure spec)
Returns a collection which contains the objects in this collection which meet the given closure specification.- Specified by:
findAll
in interfaceDomainObjectCollection<T>
- Parameters:
spec
- The specification to use. The closure gets a collection element as an argument.- Returns:
- The collection of matching objects. Returns an empty collection if there are no such objects in this collection.
-
-