Enum Status.Kind

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Status.Kind>
    Enclosing class:
    Status

    public static enum Status.Kind
    extends java.lang.Enum<Status.Kind>
    class for kind status of the item or its properties the constants are defined in the interface StatusKind for building reasons
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      added
      is scheduled for additon
      conflicted
      local mods received conflicting repos mods
      deleted
      scheduled for deletion
      external
      an unversioned path populated by an svn:externals property
      ignored
      a resource marked as ignored
      incomplete
      a directory doesn't contain a complete entries list
      merged
      local mods received repos mods
      missing
      under v.c., but is missing
      modified
      text or props have been modified
      none
      does not exist
      normal
      exists, but uninteresting
      obstructed
      an unversioned resource is in the way of the versioned resource
      replaced
      was deleted and then re-added
      unversioned
      is not a versioned thing in this wc
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String description
      The description of the action.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private Kind​(java.lang.String description)  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      static Status.Kind valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static Status.Kind[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • none

        public static final Status.Kind none
        does not exist
      • unversioned

        public static final Status.Kind unversioned
        is not a versioned thing in this wc
      • normal

        public static final Status.Kind normal
        exists, but uninteresting
      • added

        public static final Status.Kind added
        is scheduled for additon
      • missing

        public static final Status.Kind missing
        under v.c., but is missing
      • deleted

        public static final Status.Kind deleted
        scheduled for deletion
      • replaced

        public static final Status.Kind replaced
        was deleted and then re-added
      • modified

        public static final Status.Kind modified
        text or props have been modified
      • merged

        public static final Status.Kind merged
        local mods received repos mods
      • conflicted

        public static final Status.Kind conflicted
        local mods received conflicting repos mods
      • ignored

        public static final Status.Kind ignored
        a resource marked as ignored
      • obstructed

        public static final Status.Kind obstructed
        an unversioned resource is in the way of the versioned resource
      • external

        public static final Status.Kind external
        an unversioned path populated by an svn:externals property
      • incomplete

        public static final Status.Kind incomplete
        a directory doesn't contain a complete entries list
    • Field Detail

      • description

        private java.lang.String description
        The description of the action.
    • Constructor Detail

      • Kind

        private Kind​(java.lang.String description)
    • Method Detail

      • values

        public static Status.Kind[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Status.Kind c : Status.Kind.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Status.Kind valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<Status.Kind>