Package org.gradle.work
Interface FileChange
public interface FileChange
A change to a file.
- Since:
- 5.4
- 
Method SummaryModifier and TypeMethodDescriptionThe type of change to the file.getFile()The file, which may no longer exist.The file type of the file.The normalized path of the file, as specified by the path normalization strategy.
- 
Method Details- 
getFileFile getFile()The file, which may no longer exist.
- 
getChangeTypeChangeType getChangeType()The type of change to the file.
- 
getFileTypeFileType getFileType()The file type of the file.For ChangeType.ADDEDandChangeType.MODIFIED, the type of the file which was added/modified is reported. ForChangeType.REMOVEDthe type of the file which was removed is reported.
- 
getNormalizedPathString getNormalizedPath()The normalized path of the file, as specified by the path normalization strategy.See PathSensitivity,ClasspathandCompileClasspathfor the different path normalization strategies.
 
-