Enum Status.Kind

java.lang.Object
java.lang.Enum<Status.Kind>
org.apache.subversion.javahl.types.Status.Kind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Status.Kind>, java.lang.constant.Constable
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
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

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

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

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

    Modifier and Type
    Method
    Description
    java.lang.String
     
    valueOf(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static Status.Kind[]
    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, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf

    Methods inherited from class java.lang.Object

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

    • 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 Details

    • description

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

    • Kind

      private Kind(java.lang.String description)
  • Method Details

    • values

      public static Status.Kind[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      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>