Class SVNStatusKind
- java.lang.Object
-
- org.tigris.subversion.svnclientadapter.SVNStatusKind
-
public class SVNStatusKind extends java.lang.ObjectBase class for enumerating the possible types for aStatus.
-
-
Field Summary
Fields Modifier and Type Field Description static SVNStatusKindADDEDis scheduled for additionstatic SVNStatusKindCONFLICTEDlocal mods received conflicting repos modsstatic SVNStatusKindDELETEDscheduled for deletionstatic SVNStatusKindEXTERNALan unversioned path populated by an svn:external propertystatic SVNStatusKindIGNOREDa resource marked as ignoredstatic SVNStatusKindINCOMPLETEa directory doesn't contain a complete entries liststatic SVNStatusKindMERGEDlocal mods received repos modsstatic SVNStatusKindMISSINGunder v.c., but is missingstatic SVNStatusKindMODIFIEDtext or props have been modifiedstatic SVNStatusKindNONEdoes not existstatic SVNStatusKindNORMALexists, but uninteresting.static SVNStatusKindOBSTRUCTEDan unversioned resource is in the way of the versioned resourcestatic SVNStatusKindREPLACEDwas deleted and then re-addedstatic SVNStatusKindUNVERSIONEDis not a versioned thing in this wc
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)static SVNStatusKindfromInt(int kind)Returns the SVNStatusKind corresponding to the given int representation.static SVNStatusKindfromString(java.lang.String kind)returns the SVNStatusKind corresponding to the given string or nullinthashCode()booleanhasTreeConflict()voidsetTreeConflicted(boolean treeConflicted)inttoInt()java.lang.StringtoString()
-
-
-
Field Detail
-
NONE
public static final SVNStatusKind NONE
does not exist
-
NORMAL
public static final SVNStatusKind NORMAL
exists, but uninteresting.
-
ADDED
public static final SVNStatusKind ADDED
is scheduled for addition
-
MISSING
public static final SVNStatusKind MISSING
under v.c., but is missing
-
INCOMPLETE
public static final SVNStatusKind INCOMPLETE
a directory doesn't contain a complete entries list
-
DELETED
public static final SVNStatusKind DELETED
scheduled for deletion
-
REPLACED
public static final SVNStatusKind REPLACED
was deleted and then re-added
-
MODIFIED
public static final SVNStatusKind MODIFIED
text or props have been modified
-
MERGED
public static final SVNStatusKind MERGED
local mods received repos mods
-
CONFLICTED
public static final SVNStatusKind CONFLICTED
local mods received conflicting repos mods
-
OBSTRUCTED
public static final SVNStatusKind OBSTRUCTED
an unversioned resource is in the way of the versioned resource
-
IGNORED
public static final SVNStatusKind IGNORED
a resource marked as ignored
-
EXTERNAL
public static final SVNStatusKind EXTERNAL
an unversioned path populated by an svn:external property
-
UNVERSIONED
public static final SVNStatusKind UNVERSIONED
is not a versioned thing in this wc
-
-
Method Detail
-
toInt
public int toInt()
- Returns:
- an integer value representation of the statusKind
-
setTreeConflicted
public void setTreeConflicted(boolean treeConflicted)
-
hasTreeConflict
public boolean hasTreeConflict()
-
fromInt
public static SVNStatusKind fromInt(int kind)
Returns the SVNStatusKind corresponding to the given int representation. (As returned bytoInt()method)- Parameters:
kind-- Returns:
- SVNStatusKind representing the int value
-
fromString
public static SVNStatusKind fromString(java.lang.String kind)
returns the SVNStatusKind corresponding to the given string or null- Parameters:
kind-- Returns:
- SVNStatusKind representing the supplied string value
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-