June 2012
Intermediate to advanced
288 pages
6h 48m
English
FileVisitResult Enum
Package: java.nio.file
FileVisitResult is an enumeration that includes the following values:
CONTINUE: Continue processing.
SKIP_SIBLINGS: Continue without visiting any other directories or files at this level in the directory tree.
SKIP_SUBTREE: Continue without visiting additional entries in this directory.
TERMINATE: Terminates the file visitor.
FileVisitResult is used along with the FileVisitor interface and the SimpleFileVisitor class to provide return values that indicate whether the file visitor should continue processing. For more information, see FileVisitor Interface and SimpleFileVisitor Class.
Read now
Unlock full access