public static enum Types.VdiType extends java.lang.Enum<Types.VdiType>
Enum Constant and Description |
---|
CRASHDUMP
a disk that stores VM crashdump information
|
EPHEMERAL
a disk that may be reformatted on upgrade
|
HA_STATEFILE
a disk used for HA storage heartbeating
|
METADATA
a disk used for HA Pool metadata
|
REDO_LOG
a disk used for a general metadata redo-log
|
SUSPEND
a disk that stores a suspend image
|
SYSTEM
a disk that may be replaced on upgrade
|
UNRECOGNIZED
The value does not belong to this enumeration
|
USER
a disk that is always preserved on upgrade
|
Modifier and Type | Method and Description |
---|---|
static Types.VdiType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Types.VdiType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.VdiType UNRECOGNIZED
public static final Types.VdiType SYSTEM
public static final Types.VdiType USER
public static final Types.VdiType EPHEMERAL
public static final Types.VdiType SUSPEND
public static final Types.VdiType CRASHDUMP
public static final Types.VdiType HA_STATEFILE
public static final Types.VdiType METADATA
public static final Types.VdiType REDO_LOG
public static Types.VdiType[] values()
for (Types.VdiType c : Types.VdiType.values()) System.out.println(c);
public static Types.VdiType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null