Package org.gradle.api.resources
Interface ResourceHandler
-
public interface ResourceHandler
Provides access to resource-specific utility methods, for example factory methods that create various resources.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReadableResource
bzip2(java.lang.Object path)
Creates resource that points to a bzip2 compressed file at the given path.TextResourceFactory
getText()
Returns a factory for creatingTextResource
s from various sources such as strings, files, and archive entries.ReadableResource
gzip(java.lang.Object path)
Creates resource that points to a gzip compressed file at the given path.
-
-
-
Method Detail
-
gzip
ReadableResource gzip(java.lang.Object path)
Creates resource that points to a gzip compressed file at the given path. The path is evaluated as perProject.file(Object)
.- Parameters:
path
- The path evaluated as perProject.file(Object)
.
-
bzip2
ReadableResource bzip2(java.lang.Object path)
Creates resource that points to a bzip2 compressed file at the given path. The path is evaluated as perProject.file(Object)
.- Parameters:
path
- The path evaluated as perProject.file(Object)
.
-
getText
TextResourceFactory getText()
Returns a factory for creatingTextResource
s from various sources such as strings, files, and archive entries.- Returns:
- a factory for creating
TextResource
s - Since:
- 2.2
-
-