public enum FileVisitResult extends Enum
Represents special return values for the 'preDir', 'postDir' and 'visit'/supplied Closures used with ResourceGroovyMethods.traverse and related methods to control subsequent traversal behavior.
| Enum constant | Description | 
|---|---|
| CONTINUE | Continue processing; the default | 
| SKIP_SIBLINGS | Skip processing sibling files/directories within the current directory being processed | 
| SKIP_SUBTREE | Do not process the child files/subdirectories within the current directory being processed | 
| TERMINATE | Do not process any more files | 
Continue processing; the default
Skip processing sibling files/directories within the current directory being processed
Do not process the child files/subdirectories within the current directory being processed
Do not process any more files
Copyright © 2003-2025 The Apache Software Foundation. All rights reserved.