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>
- 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 additonconflicted
local mods received conflicting repos modsdeleted
scheduled for deletionexternal
an unversioned path populated by an svn:externals propertyignored
a resource marked as ignoredincomplete
a directory doesn't contain a complete entries listmerged
local mods received repos modsmissing
under v.c., but is missingmodified
text or props have been modifiednone
does not existnormal
exists, but uninterestingobstructed
an unversioned resource is in the way of the versioned resourcereplaced
was deleted and then re-addedunversioned
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.
-
-
-
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(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 namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<Status.Kind>
-
-