Enum Status.Kind
- All Implemented Interfaces:
Serializable
,Comparable<Status.Kind>
,java.lang.constant.Constable
- 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
-
Nested Class Summary
-
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 -
Method Summary
Modifier and Type Method Description 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.
-
Enum Constant Details
-
none
does not exist -
unversioned
is not a versioned thing in this wc -
normal
exists, but uninteresting -
added
is scheduled for additon -
missing
under v.c., but is missing -
deleted
scheduled for deletion -
replaced
was deleted and then re-added -
modified
text or props have been modified -
merged
local mods received repos mods -
conflicted
local mods received conflicting repos mods -
ignored
a resource marked as ignored -
obstructed
an unversioned resource is in the way of the versioned resource -
external
an unversioned path populated by an svn:externals property -
incomplete
a directory doesn't contain a complete entries list
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<Status.Kind>
-