public enum NodeKind extends Enum<NodeKind>
Enum Constant and Description |
---|
dir
directory
|
file
regular file
|
none
absent
|
symlink
symbolic link
|
unknown
something's here, but we don't know what
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static NodeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeKind none
public static final NodeKind file
public static final NodeKind dir
public static final NodeKind unknown
public static final NodeKind symlink
public static NodeKind[] values()
for (NodeKind c : NodeKind.values()) System.out.println(c);
public static NodeKind 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 © 2022. All rights reserved.