public enum SVNLogChange extends Enum<SVNLogChange>
| Enum Constant and Description |
|---|
ADD
File has been added.
|
MODIFICATION
File has been modified.
|
NONE
No change.
|
| Modifier and Type | Method and Description |
|---|---|
static SVNLogChange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SVNLogChange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SVNLogChange MODIFICATION
public static final SVNLogChange ADD
public static final SVNLogChange NONE
public static SVNLogChange[] values()
for (SVNLogChange c : SVNLogChange.values()) System.out.println(c);
public static SVNLogChange 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 © 2013-2015. All Rights Reserved.