public enum FirmwareType extends java.lang.Enum<FirmwareType>
Enum Constant and Description |
---|
BIOS
BIOS Firmware.
|
EFI
EFI Firmware, bitness detected basing on OS type.
|
EFI32
EFI firmware, 32-bit.
|
EFI64
EFI firmware, 64-bit.
|
EFIDUAL
EFI firmware, combined 32 and 64-bit.
|
Modifier and Type | Method and Description |
---|---|
static FirmwareType |
fromValue(long v) |
static FirmwareType |
fromValue(java.lang.String v) |
int |
value() |
static FirmwareType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FirmwareType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FirmwareType BIOS
public static final FirmwareType EFI
public static final FirmwareType EFI32
public static final FirmwareType EFI64
public static final FirmwareType EFIDUAL
public static FirmwareType[] values()
for (FirmwareType c : FirmwareType.values()) System.out.println(c);
public static FirmwareType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public static FirmwareType fromValue(long v)
public static FirmwareType fromValue(java.lang.String v)