public static enum FileTreeWalk.FileWalkDirection extends Enum<FileTreeWalk.FileWalkDirection>
Enum Constant and Description |
---|
BOTTOM_UP
Depth-first search, directory is visited AFTER its files
|
TOP_DOWN
Depth-first search, directory is visited BEFORE its files
|
Modifier and Type | Method and Description |
---|---|
static FileTreeWalk.FileWalkDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileTreeWalk.FileWalkDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileTreeWalk.FileWalkDirection TOP_DOWN
public static final FileTreeWalk.FileWalkDirection BOTTOM_UP
public static FileTreeWalk.FileWalkDirection[] values()
for (FileTreeWalk.FileWalkDirection c : FileTreeWalk.FileWalkDirection.values()) System.out.println(c);
public static FileTreeWalk.FileWalkDirection valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024. All rights reserved.