declare namespace java { namespace nio { namespace file { /** * The result type of a {@link FileVisitor FileVisitor}. * @since 1.7 * @see Files#walkFileTree */ // @ts-ignore class FileVisitResult extends java.lang.Enum { /** * Continue. When returned from a {@link FileVisitor#preVisitDirectory * preVisitDirectory} method then the entries in the directory should also * be visited. */ // @ts-ignore public static readonly CONTINUE: java.nio.file.FileVisitResult /** * Terminate. */ // @ts-ignore public static readonly TERMINATE: java.nio.file.FileVisitResult /** * Continue without visiting the entries in this directory. This result * is only meaningful when returned from the {@link * FileVisitor#preVisitDirectory preVisitDirectory} method; otherwise * this result type is the same as returning {@link #CONTINUE}. */ // @ts-ignore public static readonly SKIP_SUBTREE: java.nio.file.FileVisitResult /** * Continue without visiting the siblings of this file or directory. * If returned from the {@link FileVisitor#preVisitDirectory * preVisitDirectory} method then the entries in the directory are also * skipped and the {@link FileVisitor#postVisitDirectory postVisitDirectory} * method is not invoked. */ // @ts-ignore public static readonly SKIP_SIBLINGS: java.nio.file.FileVisitResult // @ts-ignore public static values(): java.nio.file.FileVisitResult[] // @ts-ignore public static valueOf(name: java.lang.String | string): java.nio.file.FileVisitResult } } } }