Package org.uberfire.java.nio.file
Class SimpleFileVisitor<T>
- java.lang.Object
-
- org.uberfire.java.nio.file.SimpleFileVisitor<T>
-
- All Implemented Interfaces:
org.uberfire.java.nio.file.FileVisitor<T>
public class SimpleFileVisitor<T> extends Object implements org.uberfire.java.nio.file.FileVisitor<T>
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedSimpleFileVisitor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.uberfire.java.nio.file.FileVisitResultpostVisitDirectory(T dir, org.uberfire.java.nio.IOException exc)org.uberfire.java.nio.file.FileVisitResultpreVisitDirectory(T dir, org.uberfire.java.nio.file.attribute.BasicFileAttributes attrs)org.uberfire.java.nio.file.FileVisitResultvisitFile(T file, org.uberfire.java.nio.file.attribute.BasicFileAttributes attrs)org.uberfire.java.nio.file.FileVisitResultvisitFileFailed(T file, org.uberfire.java.nio.IOException exc)
-
-
-
Method Detail
-
preVisitDirectory
public org.uberfire.java.nio.file.FileVisitResult preVisitDirectory(T dir, org.uberfire.java.nio.file.attribute.BasicFileAttributes attrs) throws org.uberfire.java.nio.IOException
- Specified by:
preVisitDirectoryin interfaceorg.uberfire.java.nio.file.FileVisitor<T>- Throws:
org.uberfire.java.nio.IOException
-
visitFile
public org.uberfire.java.nio.file.FileVisitResult visitFile(T file, org.uberfire.java.nio.file.attribute.BasicFileAttributes attrs) throws org.uberfire.java.nio.IOException
- Specified by:
visitFilein interfaceorg.uberfire.java.nio.file.FileVisitor<T>- Throws:
org.uberfire.java.nio.IOException
-
visitFileFailed
public org.uberfire.java.nio.file.FileVisitResult visitFileFailed(T file, org.uberfire.java.nio.IOException exc) throws org.uberfire.java.nio.IOException
- Specified by:
visitFileFailedin interfaceorg.uberfire.java.nio.file.FileVisitor<T>- Throws:
org.uberfire.java.nio.IOException
-
postVisitDirectory
public org.uberfire.java.nio.file.FileVisitResult postVisitDirectory(T dir, org.uberfire.java.nio.IOException exc) throws org.uberfire.java.nio.IOException
- Specified by:
postVisitDirectoryin interfaceorg.uberfire.java.nio.file.FileVisitor<T>- Throws:
org.uberfire.java.nio.IOException
-
-