Package org.gradle.jvm.toolchain
Interface JavaToolchainRepositoryHandler
NamedDomainObjectList based handler for configuring an
 ordered collection of JavaToolchainRepository implementations.- Since:
- 7.6
- 
Method SummaryModifier and TypeMethodDescriptionReturns a list of repositories that have been added so far.booleanRemoves the repository with the given name.voidrepository(String name, Action<? super JavaToolchainRepository> configureAction) Utility method for creating a namedJavaToolchainRepositorybased on a configuration block.intsize()Returns the count of the repositories added so far.
- 
Method Details- 
repositoryUtility method for creating a namedJavaToolchainRepositorybased on a configuration block.
- 
getAsListList<JavaToolchainRepository> getAsList()Returns a list of repositories that have been added so far. The list order reflects the order in which the repositories have been declared.- Since:
- 7.6.1
 
- 
sizeint size()Returns the count of the repositories added so far.- Since:
- 7.6.1
 
- 
removeRemoves the repository with the given name.Returns true if a repository with the specified name exists and has been successfully removed, false otherwise. - Since:
- 7.6.1
 
 
-