Package jetbrains.buildServer.updates
Interface UpdateOption
-
- All Known Implementing Classes:
UpdateOptionImpl
public interface UpdateOption
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFullVersion()StringgetPreparingFailedReason()StringgetPreparingProgress()StringgetPreparingWarning()AvailableVersiongetVersion()booleanisAutoUpdatePossible()booleanisCompatibleWith(LicenseKey licenseKey)booleanisPreparingForUpdate()booleanisReadyForUpdate()
-
-
-
Method Detail
-
getFullVersion
@NotNull String getFullVersion()
-
getVersion
@NotNull AvailableVersion getVersion()
-
isAutoUpdatePossible
boolean isAutoUpdatePossible()
-
isCompatibleWith
boolean isCompatibleWith(@NotNull LicenseKey licenseKey)
-
isPreparingForUpdate
boolean isPreparingForUpdate()
-
getPreparingProgress
@Nullable String getPreparingProgress()
-
getPreparingFailedReason
@Nullable String getPreparingFailedReason()
-
getPreparingWarning
@Nullable String getPreparingWarning()
-
isReadyForUpdate
boolean isReadyForUpdate()
-
-