Class SVNStatusKind
java.lang.Object
org.tigris.subversion.svnclientadapter.SVNStatusKind
Base class for enumerating the possible types for a
Status
.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SVNStatusKind
is scheduled for additionstatic final SVNStatusKind
local mods received conflicting repos modsstatic final SVNStatusKind
scheduled for deletionstatic final SVNStatusKind
an unversioned path populated by an svn:external propertystatic final SVNStatusKind
a resource marked as ignoredstatic final SVNStatusKind
a directory doesn't contain a complete entries liststatic final SVNStatusKind
local mods received repos modsstatic final SVNStatusKind
under v.c., but is missingstatic final SVNStatusKind
text or props have been modifiedstatic final SVNStatusKind
does not existstatic final SVNStatusKind
exists, but uninteresting.static final SVNStatusKind
an unversioned resource is in the way of the versioned resourcestatic final SVNStatusKind
was deleted and then re-addedstatic final SVNStatusKind
is not a versioned thing in this wc -
Method Summary
Modifier and TypeMethodDescriptionboolean
static SVNStatusKind
fromInt
(int kind) Returns the SVNStatusKind corresponding to the given int representation.static SVNStatusKind
fromString
(String kind) returns the SVNStatusKind corresponding to the given string or nullint
hashCode()
boolean
void
setTreeConflicted
(boolean treeConflicted) int
toInt()
toString()
-
Field Details
-
NONE
does not exist -
NORMAL
exists, but uninteresting. -
ADDED
is scheduled for addition -
MISSING
under v.c., but is missing -
INCOMPLETE
a directory doesn't contain a complete entries list -
DELETED
scheduled for deletion -
REPLACED
was deleted and then re-added -
MODIFIED
text or props have been modified -
MERGED
local mods received repos mods -
CONFLICTED
local mods received conflicting repos mods -
OBSTRUCTED
an unversioned resource is in the way of the versioned resource -
IGNORED
a resource marked as ignored -
EXTERNAL
an unversioned path populated by an svn:external property -
UNVERSIONED
is not a versioned thing in this wc
-
-
Method Details
-
toInt
public int toInt()- Returns:
- an integer value representation of the statusKind
-
setTreeConflicted
public void setTreeConflicted(boolean treeConflicted) -
hasTreeConflict
public boolean hasTreeConflict() -
fromInt
Returns the SVNStatusKind corresponding to the given int representation. (As returned bytoInt()
method)- Parameters:
kind
-- Returns:
- SVNStatusKind representing the int value
-
fromString
returns the SVNStatusKind corresponding to the given string or null- Parameters:
kind
-- Returns:
- SVNStatusKind representing the supplied string value
-
toString
-
equals
-
hashCode
public int hashCode()
-