public class SVNConflictReason
extends java.lang.Object
Modifier and Type | Field | Description |
---|---|---|
static SVNConflictReason |
ADDED |
Constant saying that an object is already added or schedule-add
|
static SVNConflictReason |
DELETED |
Constant saying that an object is already schedule-delete.
|
static SVNConflictReason |
EDITED |
Constant saying that local edits are already present.
|
static SVNConflictReason |
MISSING |
Constant saying that an object is unknown or missing.
|
static SVNConflictReason |
MOVED_AWAY |
Constant saying that an object has been moved away
|
static SVNConflictReason |
MOVED_HERE |
Constant saying that an object has been moved here
|
static SVNConflictReason |
OBSTRUCTED |
Constant saying that another object is in the way.
|
static SVNConflictReason |
REPLACED |
Constant saying that an object is already replaced.
|
static SVNConflictReason |
SKIP |
|
static SVNConflictReason |
UNVERSIONED |
Constant saying that an object is unversioned.
|
static SVNConflictReason |
WC_SKIP |
Modifier and Type | Method | Description |
---|---|---|
static SVNConflictReason |
fromString(java.lang.String reason) |
Converts a string reason name to an
SVNConflictReason object. |
java.lang.String |
getName() |
Retunrns a string representation of this object.
|
java.lang.String |
toString() |
Retunrns a string representation of this object.
|
public static final SVNConflictReason EDITED
public static final SVNConflictReason OBSTRUCTED
public static final SVNConflictReason DELETED
public static final SVNConflictReason MISSING
public static final SVNConflictReason UNVERSIONED
public static final SVNConflictReason ADDED
public static final SVNConflictReason REPLACED
public static final SVNConflictReason MOVED_AWAY
public static final SVNConflictReason MOVED_HERE
public static final SVNConflictReason SKIP
public static final SVNConflictReason WC_SKIP
public static SVNConflictReason fromString(java.lang.String reason)
SVNConflictReason
object.reason
- nameSVNConflictReason
that matches the reason
name;
null
if no match is foundpublic java.lang.String getName()
public java.lang.String toString()
toString
in class java.lang.Object