public enum FirmwareUpdateInterface extends Enum<FirmwareUpdateInterface>
Enum Constant and Description |
---|
Bluetooth
Use Bluetooth to upgrade firmware.
|
Current
Use the current interface to upgrade firmware.
|
USB
Use USB to upgrade firmware.
|
Modifier and Type | Method and Description |
---|---|
static FirmwareUpdateInterface |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FirmwareUpdateInterface[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FirmwareUpdateInterface Current
public static final FirmwareUpdateInterface Bluetooth
public static final FirmwareUpdateInterface USB
public static FirmwareUpdateInterface[] values()
for (FirmwareUpdateInterface c : FirmwareUpdateInterface.values()) System.out.println(c);
public static FirmwareUpdateInterface valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is null