public enum NodeKind extends java.lang.Enum<NodeKind>
SvnDirEntry
or SvnLogItem
-
so called a node. This can be one of
Modifier and Type | Method | Description |
---|---|---|
static NodeKind |
valueOf(java.lang.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 NodeKind[] values()
for (NodeKind c : NodeKind.values()) System.out.println(c);
public static NodeKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null