public static enum SvnLogItem.Action extends java.lang.Enum<SvnLogItem.Action>
Modifier and Type | Method | Description |
---|---|---|
static SvnLogItem.Action |
fromChar(char action) |
|
static SvnLogItem.Action |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SvnLogItem.Action[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SvnLogItem.Action added
public static final SvnLogItem.Action modified
public static final SvnLogItem.Action deleted
public static final SvnLogItem.Action replaced
public static SvnLogItem.Action[] values()
for (SvnLogItem.Action c : SvnLogItem.Action.values()) System.out.println(c);
public static SvnLogItem.Action 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 nullpublic static SvnLogItem.Action fromChar(char action)