Class SVNStatusKind


  • public class SVNStatusKind
    extends java.lang.Object
    Base class for enumerating the possible types for a Status.
    • Field Detail

      • 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 by toInt() 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:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object