Package com.blukii.sdk.config
Enum Class FirmwareUpdateProgress
- All Implemented Interfaces:
Serializable
,Comparable<FirmwareUpdateProgress>
,Constable
Enum of update progress for function (
Blukii.updateFirmware(FirmwareUpdateListener)
)-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionProgress State "Activate Image"Progress State "Connect Device"Progress State "Identify Image"Progress State "Load Image"Progress State "Prepare Device"Progress State "Transfer Image" -
Method Summary
Modifier and TypeMethodDescriptionstatic FirmwareUpdateProgress
Returns the enum constant of this class with the specified name.static FirmwareUpdateProgress[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ConnectDevice
Progress State "Connect Device" -
PrepareDevice
Progress State "Prepare Device" -
LoadImage
Progress State "Load Image" -
IdentifyImage
Progress State "Identify Image" -
TransferImage
Progress State "Transfer Image" -
ActivateImage
Progress State "Activate Image"
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-