Table of Contents
| API Documentation: | TaskCollection |
|---|
| Known Subtypes: |
|
|---|
A TaskCollection contains a set of Task instances, and provides a number of query methods.
| Method | Description |
getByName(name) | Locates an object by name, failing if there is no such object. |
getByName(name, configureClosure) | Locates an object by name, failing if there is no such object. The given configure closure is executed against the object before it is returned from this method. The object is passed to the closure as its delegate. |
getByName(name, configureAction) | Locates an object by name, failing if there is no such object. The given configure action is executed against the object before it is returned from this method. |
named(name) | Incubating Locates a task by name, without triggering its creation or configuration, failing if there is no such object. |
T getByName(String name)
Locates an object by name, failing if there is no such object.
Locates an object by name, failing if there is no such object. The given configure closure is executed against the object before it is returned from this method. The object is passed to the closure as its delegate.
Locates an object by name, failing if there is no such object. The given configure action is executed against the object before it is returned from this method.
TaskProvider<T> named(String name)
TaskProvider<T>Note: This method is incubating and may change in a future version of Gradle.
Locates a task by name, without triggering its creation or configuration, failing if there is no such object.