Package org.gradle.api.artifacts
Interface ComponentSelection
public interface ComponentSelection
Represents a tuple of the component selector of a module and a candidate version
to be evaluated in a component selection rule.
-
Method Summary
Modifier and TypeMethodDescriptionGets the candidate version of the module.<T> T
getDescriptor
(Class<T> descriptorClass) Used to access a specific descriptor format.Gets the metadata of the component.void
Rejects the candidate for the resolution.
-
Method Details
-
getCandidate
ModuleComponentIdentifier getCandidate()Gets the candidate version of the module.- Returns:
- the candidate version of the module
-
getMetadata
Gets the metadata of the component.The metadata may not be available, in which case
null
is returned. Unavailable metadata may be caused by a module published without associated metadata.- Returns:
- the
ComponentMetadata
ornull
if not available - Since:
- 5.0
-
getDescriptor
Used to access a specific descriptor format.For an Ivy module, an
ivy module descriptor
can be requested and returned.If the descriptor type requested does not exist for the module under selection,
null
is returned.- Type Parameters:
T
- the descriptor type- Parameters:
descriptorClass
- the descriptor class- Returns:
- a descriptor fo the requested type, or
null
if there was none of the requested type. - Since:
- 5.0
- See Also:
-
reject
Rejects the candidate for the resolution.- Parameters:
reason
- The reason the candidate was rejected.
-