public class SVNConflictAction
extends java.lang.Object
Modifier and Type | Field | Description |
---|---|---|
static SVNConflictAction |
ADD |
Constant representing an attempt to add an object.
|
static SVNConflictAction |
DELETE |
Constant representing an attempt to delete an object.
|
static SVNConflictAction |
EDIT |
Constant representing an attempt to change text or props.
|
static SVNConflictAction |
REPLACE |
Constant representing an attempt to replace an object.
|
Modifier and Type | Method | Description |
---|---|---|
static SVNConflictAction |
fromString(java.lang.String action) |
Converts string to an
SVNConflictAction object when possible. |
java.lang.String |
getName() |
Returns the string representation of this action.
|
java.lang.String |
toString() |
Returns the string representation of this action.
|
public static final SVNConflictAction EDIT
public static final SVNConflictAction ADD
public static final SVNConflictAction DELETE
public static final SVNConflictAction REPLACE
public static SVNConflictAction fromString(java.lang.String action)
SVNConflictAction
object when possible.action
- action nameSVNConflictAction
object which getName()
equals to action
; null
in case action
matches no SVNConflictAction
constantpublic java.lang.String getName()
public java.lang.String toString()
toString
in class java.lang.Object