public static enum ConflictDescriptor.Action extends java.lang.Enum<ConflictDescriptor.Action>
svn_wc_conflict_action_t.| Enum Constant and Description |
|---|
add
Attempting to add object.
|
delete
Attempting to delete object.
|
edit
Attempting to change text or props.
|
replace
Attempting to replace object.
|
| Modifier and Type | Method and Description |
|---|---|
static ConflictDescriptor.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConflictDescriptor.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConflictDescriptor.Action edit
public static final ConflictDescriptor.Action add
public static final ConflictDescriptor.Action delete
public static final ConflictDescriptor.Action replace
public static ConflictDescriptor.Action[] values()
for (ConflictDescriptor.Action c : ConflictDescriptor.Action.values()) System.out.println(c);
public static ConflictDescriptor.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 null