Package org.gradle.tooling
Interface FetchModelResult<T extends Model,M>
- Type Parameters:
T- The type of target from which the model was fetched.M- The fetched model type.
Carries the result of a single model fetch operation.
- Since:
- 9.3.0
-
Method Summary
Modifier and TypeMethodDescriptionCollection<? extends Failure> Returns the failures that occurred during the fetch operation.@Nullable MgetModel()Returns the fetched model.@Nullable TReturns the target from which the model was fetched.
-
Method Details
-
getTarget
Returns the target from which the model was fetched.- Returns:
- the target, or
nullif the fetch operation failed - Since:
- 9.3.0
-
getModel
Returns the fetched model.- Returns:
- the model, or
nullif the fetch operation failed - Since:
- 9.3.0
-
getFailures
Returns the failures that occurred during the fetch operation.- Returns:
- a collection of failures, empty if the fetch operation was successful
- Since:
- 9.3.0
-