public enum DumpGuestMemoryFormat extends Enum<DumpGuestMemoryFormat>
QApiEnumDescriptor{name=DumpGuestMemoryFormat, data=[elf, kdump-zlib, kdump-lzo, kdump-snappy], fields=null}
Enum Constant and Description |
---|
__UNKNOWN |
elf |
kdump_lzo |
kdump_snappy |
kdump_zlib |
Modifier and Type | Method and Description |
---|---|
String |
getJsonValue() |
static DumpGuestMemoryFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DumpGuestMemoryFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DumpGuestMemoryFormat elf
public static final DumpGuestMemoryFormat kdump_zlib
public static final DumpGuestMemoryFormat kdump_lzo
public static final DumpGuestMemoryFormat kdump_snappy
public static final DumpGuestMemoryFormat __UNKNOWN
public static DumpGuestMemoryFormat[] values()
for (DumpGuestMemoryFormat c : DumpGuestMemoryFormat.values()) System.out.println(c);
public static DumpGuestMemoryFormat 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 nullpublic String getJsonValue()