public class SVNConflictAction
extends java.lang.Object
Modifier and Type | Field and 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.
|
private java.lang.String |
myName |
static SVNConflictAction |
REPLACE
Constant representing an attempt to replace an object.
|
Modifier | Constructor and Description |
---|---|
private |
SVNConflictAction(java.lang.String name) |
Modifier and Type | Method and 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
private final java.lang.String myName
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