org.apache.subversion.javahl.types
Enum Status.Kind

java.lang.Object
  extended by java.lang.Enum<Status.Kind>
      extended by org.apache.subversion.javahl.types.Status.Kind
All Implemented Interfaces:
Serializable, Comparable<Status.Kind>
Enclosing class:
Status

public static enum Status.Kind
extends 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
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
 
Method Summary
 String toString()
           
static Status.Kind valueOf(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

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(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

toString

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