Enum ToolInstallationStatus
- java.lang.Object
-
- java.lang.Enum<ToolInstallationStatus>
-
- jetbrains.buildServer.tools.installed.ToolInstallationStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<ToolInstallationStatus>
public enum ToolInstallationStatus extends Enum<ToolInstallationStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTALLATION_COMPLETED
INSTALLATION_FAILED
INSTALLATION_IN_PROGRESS
INSTALLATION_NOT_STARTED
INSTALLATION_SCHEDULED
INSTALLATION_SKIPPED
UNINSTALLED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isInProgress()
boolean
isInstallationFailed()
boolean
isInstalled()
boolean
isScheduledOrInProgress()
boolean
isSkipped()
boolean
isUninstalled()
static ToolInstallationStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static ToolInstallationStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTALLATION_NOT_STARTED
public static final ToolInstallationStatus INSTALLATION_NOT_STARTED
-
INSTALLATION_SKIPPED
public static final ToolInstallationStatus INSTALLATION_SKIPPED
-
INSTALLATION_SCHEDULED
public static final ToolInstallationStatus INSTALLATION_SCHEDULED
-
INSTALLATION_IN_PROGRESS
public static final ToolInstallationStatus INSTALLATION_IN_PROGRESS
-
INSTALLATION_COMPLETED
public static final ToolInstallationStatus INSTALLATION_COMPLETED
-
INSTALLATION_FAILED
public static final ToolInstallationStatus INSTALLATION_FAILED
-
UNINSTALLED
public static final ToolInstallationStatus UNINSTALLED
-
-
Method Detail
-
values
public static ToolInstallationStatus[] 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 (ToolInstallationStatus c : ToolInstallationStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ToolInstallationStatus valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
isSkipped
public boolean isSkipped()
-
isInProgress
public boolean isInProgress()
-
isScheduledOrInProgress
public boolean isScheduledOrInProgress()
-
isInstalled
public boolean isInstalled()
-
isInstallationFailed
public boolean isInstallationFailed()
-
isUninstalled
public boolean isUninstalled()
-
-