Package org.gradle.api.plugins
Interface PluginCollection<T extends Plugin>
- Type Parameters:
T
- The type of plugins which this collection contains.
- All Superinterfaces:
Collection<T>
,DomainObjectCollection<T>
,DomainObjectSet<T>
,Iterable<T>
,Set<T>
- All Known Subinterfaces:
PluginContainer
A PluginCollection
represents a collection of Plugin
instances.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Deprecated.boolean
addAll
(Collection<? extends T> c) Deprecated.UsePluginManager.apply(Class)
instead.void
clear()
Deprecated.plugins cannot be removed.Returns a collection which contains the objects in this collection which meet the given closure specification.Returns a collection which contains the objects in this collection which meet the given specification.boolean
Deprecated.plugins cannot be removed.boolean
removeAll
(Collection<?> c) Deprecated.plugins cannot be removed.void
whenPluginAdded
(Closure closure) Adds a closure to be called when a plugin is added to this collection.whenPluginAdded
(Action<? super T> action) Adds anAction
to be executed when a plugin is added to this collection.<S extends T>
PluginCollection<S>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
addAllLater, addLater, all, all, configureEach, whenObjectAdded, whenObjectAdded, whenObjectRemoved, whenObjectRemoved, withType, withType
Methods inherited from interface org.gradle.api.DomainObjectSet
findAll
-
Method Details
-
matching
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.This method is an intermediate eager operation. The application of the filter forces the realization of the collection elements.
- Specified by:
matching
in interfaceDomainObjectCollection<T extends Plugin>
- Specified by:
matching
in interfaceDomainObjectSet<T extends Plugin>
- 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
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.This method is an intermediate eager operation. The application of the filter forces the realization of the collection elements.
- Specified by:
matching
in interfaceDomainObjectCollection<T extends Plugin>
- Specified by:
matching
in interfaceDomainObjectSet<T extends Plugin>
- Parameters:
closure
- 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.
-
withType
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.This method is an intermediate operation. It does not change the realized/unrealized state of the elements in the collection.
- Specified by:
withType
in interfaceDomainObjectCollection<T extends Plugin>
- Specified by:
withType
in interfaceDomainObjectSet<T extends Plugin>
- 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.
-
whenPluginAdded
Adds anAction
to be executed when a plugin is added to this collection.- Parameters:
action
- The action to be executed- Returns:
- the supplied action
-
whenPluginAdded
Adds a closure to be called when a plugin is added to this collection. The plugin is passed to the closure as the parameter.- Parameters:
closure
- The closure to be called
-
add
Deprecated.UsePluginManager.apply(Class)
instead.Unsupported. -
addAll
Deprecated.UsePluginManager.apply(Class)
instead.Unsupported. -
remove
Deprecated.plugins cannot be removed.Unsupported. -
removeAll
Deprecated.plugins cannot be removed.Unsupported. -
clear
Deprecated.plugins cannot be removed.Unsupported.
-
PluginManager.apply(Class)
instead.