public enum QEmuImageFormat extends Enum<QEmuImageFormat>
Enum Constant and Description |
---|
cloop
Compressed Loop format, mainly used for reading Knoppix and similar live CD image formats.
|
cow
Copy-on-write format, supported for historical reasons only and not available to QEMU on Windows.
|
qcow
The old QEMU copy-on-write format, supported for historical reasons and superseded by qcow2.
|
qcow2
QEMU copy-on-write format, supporting multiple snapshots, sparse images, AES encryption, and zlib compression.
|
raw
A plain binary image of the disc image.
|
vdi
VirtualBox 1.1 compatible image format, for exchanging images with VirtualBox.
|
vmdk
VMware 3 & 4, or 6 image format, for exchanging images with that product.
|
Modifier and Type | Method and Description |
---|---|
static QEmuImageFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QEmuImageFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QEmuImageFormat raw
public static final QEmuImageFormat cloop
public static final QEmuImageFormat cow
public static final QEmuImageFormat qcow
public static final QEmuImageFormat qcow2
public static final QEmuImageFormat vmdk
public static final QEmuImageFormat vdi
public static QEmuImageFormat[] values()
for (QEmuImageFormat c : QEmuImageFormat.values()) System.out.println(c);
public static QEmuImageFormat 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