public static enum QEmuBootOption.BootDevice extends Enum<QEmuBootOption.BootDevice>
Enum Constant and Description |
---|
Floppy0 |
Floppy1 |
HardDisk0 |
HardDisk1 |
Network0 |
Network1 |
Network2 |
Network3 |
Modifier and Type | Method and Description |
---|---|
static QEmuBootOption.BootDevice |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QEmuBootOption.BootDevice[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QEmuBootOption.BootDevice Floppy0
public static final QEmuBootOption.BootDevice Floppy1
public static final QEmuBootOption.BootDevice HardDisk0
public static final QEmuBootOption.BootDevice HardDisk1
public static final QEmuBootOption.BootDevice Network0
public static final QEmuBootOption.BootDevice Network1
public static final QEmuBootOption.BootDevice Network2
public static final QEmuBootOption.BootDevice Network3
public static QEmuBootOption.BootDevice[] values()
for (QEmuBootOption.BootDevice c : QEmuBootOption.BootDevice.values()) System.out.println(c);
public static QEmuBootOption.BootDevice 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