com.xensource.xenapi
public static enum Types.VgpuTypeImplementation extends java.lang.Enum<Types.VgpuTypeImplementation>
Enum Constant and Description |
---|
GVT_G
vGPU using Intel GVT-g
|
MXGPU
vGPU using AMD MxGPU
|
NVIDIA
vGPU using NVIDIA hardware
|
PASSTHROUGH
Pass through an entire physical GPU to a guest
|
UNRECOGNIZED
The value does not belong to this enumeration
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Types.VgpuTypeImplementation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Types.VgpuTypeImplementation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.VgpuTypeImplementation UNRECOGNIZED
public static final Types.VgpuTypeImplementation PASSTHROUGH
public static final Types.VgpuTypeImplementation NVIDIA
public static final Types.VgpuTypeImplementation GVT_G
public static final Types.VgpuTypeImplementation MXGPU
public static Types.VgpuTypeImplementation[] values()
for (Types.VgpuTypeImplementation c : Types.VgpuTypeImplementation.values()) System.out.println(c);
public static Types.VgpuTypeImplementation 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.VgpuTypeImplementation>