public static enum IncrementalResolver.ForChangedFiles extends java.lang.Enum<IncrementalResolver.ForChangedFiles> implements IncrementalResolver
IncrementalResolver.ForChangedFiles| Enum Constant and Description |
|---|
INSTANCE
The singleton instance.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.io.File> |
apply(org.gradle.api.Project project,
java.lang.Iterable<FileChange> changes,
java.io.File sourceRoot,
java.io.File targetRoot,
java.lang.Iterable<java.io.File> classPath)
Returns a list of files to transform after an incremental change.
|
static IncrementalResolver.ForChangedFiles |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IncrementalResolver.ForChangedFiles[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncrementalResolver.ForChangedFiles INSTANCE
public static IncrementalResolver.ForChangedFiles[] values()
for (IncrementalResolver.ForChangedFiles c : IncrementalResolver.ForChangedFiles.values()) System.out.println(c);
public static IncrementalResolver.ForChangedFiles valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.util.List<java.io.File> apply(org.gradle.api.Project project,
java.lang.Iterable<FileChange> changes,
java.io.File sourceRoot,
java.io.File targetRoot,
java.lang.Iterable<java.io.File> classPath)
apply in interface IncrementalResolverproject - The current project.changes - An iterable of all changes that were found.sourceRoot - The source directory.targetRoot - The target directory.classPath - The class path available.