public static enum UpdateStatus.State
Represents the state of a firmware update.
Enum Constant and Description |
---|
DOWNLOADING
The firmware update is being downloaded.
|
ERROR
There was an error while updating the firmware.
|
NEW_VERSION_FOUND
A firmware update is available.
|
NEW_VERSION_READY
The firmware update is downloaded and ready to be installed.
|
NOT_CHECKED
The firmware update status has not been checked yet.
|
SUCCESS
The firmware was successfully updated.
|
UP_TO_DATE
The firmware is up to date.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toValue()
Returns the raw firmware update state value.
|
public static UpdateStatus.State SUCCESS
The firmware was successfully updated.
public static UpdateStatus.State ERROR
There was an error while updating the firmware.
public static UpdateStatus.State NOT_CHECKED
The firmware update status has not been checked yet.
public static UpdateStatus.State UP_TO_DATE
The firmware is up to date.
public static UpdateStatus.State NEW_VERSION_FOUND
A firmware update is available.
public static UpdateStatus.State DOWNLOADING
The firmware update is being downloaded.
public static UpdateStatus.State NEW_VERSION_READY
The firmware update is downloaded and ready to be installed.