Package org.gradle.api.file
Interface ReproducibleFileVisitor
-
- All Superinterfaces:
FileVisitor
public interface ReproducibleFileVisitor extends FileVisitor
Visitor which can request a reproducible file order.- Since:
- 3.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isReproducibleFileOrder()
Whether theFileVisitor
should receive the files in a reproducible order independent of the underlying file system.-
Methods inherited from interface org.gradle.api.file.FileVisitor
visitDir, visitFile
-
-
-
-
Method Detail
-
isReproducibleFileOrder
boolean isReproducibleFileOrder()
Whether theFileVisitor
should receive the files in a reproducible order independent of the underlying file system.- Returns:
true
if files should be walked in a reproducible order.
-
-