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 addedis scheduled for additonconflictedlocal mods received conflicting repos modsdeletedscheduled for deletionexternalan unversioned path populated by an svn:externals propertyignoreda resource marked as ignoredincompletea directory doesn't contain a complete entries listmergedlocal mods received repos modsmissingunder v.c., but is missingmodifiedtext or props have been modifiednonedoes not existnormalexists, but uninterestingobstructedan unversioned resource is in the way of the versioned resourcereplacedwas deleted and then re-addedunversionedis not a versioned thing in this wc -
Method Summary
Modifier and Type Method Description StringtoString()static Status.KindvalueOf(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:
toStringin classEnum<Status.Kind>
-