public static enum Types.DomainType extends java.lang.Enum<Types.DomainType>
Enum Constant and Description |
---|
HVM
HVM; Fully Virtualised
|
PV
PV: Paravirtualised
|
PV_IN_PVH
PV inside a PVH container
|
UNRECOGNIZED
The value does not belong to this enumeration
|
UNSPECIFIED
Not specified or unknown domain type
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Types.DomainType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Types.DomainType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.DomainType UNRECOGNIZED
public static final Types.DomainType HVM
public static final Types.DomainType PV
public static final Types.DomainType PV_IN_PVH
public static final Types.DomainType UNSPECIFIED
public static Types.DomainType[] values()
for (Types.DomainType c : Types.DomainType.values()) System.out.println(c);
public static Types.DomainType 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Types.DomainType>