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