public static enum VcsRootStatus.Type extends java.lang.Enum<VcsRootStatus.Type>
SCHEDULED
root with the status scheduled for checking of changes.
STARTED
root is being checking now.
FINISHED
root has been checked.
NOT_MONITORED
root is just created or unused, was not checked yet.Enum Constant and Description |
---|
FINISHED |
NOT_MONITORED |
SCHEDULED |
STARTED |
UNKNOWN
Deprecated.
Explicitly deprecated in 2019.1.3, though wasn't use before as well. Use
NOT_MONITORED instead |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getText()
Status type string representation.
|
static VcsRootStatus.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VcsRootStatus.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VcsRootStatus.Type SCHEDULED
public static final VcsRootStatus.Type STARTED
public static final VcsRootStatus.Type FINISHED
public static final VcsRootStatus.Type NOT_MONITORED
@Deprecated public static final VcsRootStatus.Type UNKNOWN
NOT_MONITORED
insteadpublic static VcsRootStatus.Type[] values()
for (VcsRootStatus.Type c : VcsRootStatus.Type.values()) System.out.println(c);
public static VcsRootStatus.Type 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 java.lang.String getText()