public static enum ConflictDescriptor.Action extends 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(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(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 © 2023. All rights reserved.