public enum VirtualDiskType extends Enum<VirtualDiskType>
| Enum Constant and Description |
|---|
eagerZeroedThick |
flatMonolithic |
preallocated |
raw |
rdm |
rdmp |
seSparse |
sparse2Gb |
sparseMonolithic |
thick |
thick2Gb |
thin |
| Modifier and Type | Method and Description |
|---|---|
static VirtualDiskType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VirtualDiskType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VirtualDiskType preallocated
public static final VirtualDiskType thin
public static final VirtualDiskType seSparse
public static final VirtualDiskType rdm
public static final VirtualDiskType rdmp
public static final VirtualDiskType raw
public static final VirtualDiskType sparse2Gb
public static final VirtualDiskType thick2Gb
public static final VirtualDiskType eagerZeroedThick
public static final VirtualDiskType sparseMonolithic
public static final VirtualDiskType flatMonolithic
public static final VirtualDiskType thick
public static VirtualDiskType[] values()
for (VirtualDiskType c : VirtualDiskType.values()) System.out.println(c);
public static VirtualDiskType 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 nullCopyright © 2011-2012. All Rights Reserved.