Enum Constant | Description |
---|---|
ADDED |
|
CONFLICTED |
|
COPIED |
|
CORRUPTED |
|
DELETED |
|
EXTERNAL |
|
IGNORED |
|
MERGED |
|
MISSING |
|
MODIFIED |
|
MOVED |
|
NOT_MODIFIED |
|
NOT_REVERTED |
|
OBSTRUCTED |
|
REPLACED |
|
RESOLVED |
|
RESTORED |
|
REVERTED |
|
UNKNOWN |
|
UNVERSIONED |
|
UPDATED |
Modifier and Type | Method | Description |
---|---|---|
int |
getStatus() |
|
static VcsStatus |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static VcsStatus[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VcsStatus NOT_MODIFIED
public static final VcsStatus CONFLICTED
public static final VcsStatus UNVERSIONED
public static final VcsStatus OBSTRUCTED
public static final VcsStatus NOT_REVERTED
public static VcsStatus[] values()
for (VcsStatus c : VcsStatus.values()) System.out.println(c);
public static VcsStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getStatus()