org.virtualbox_5_0
Enum ParavirtProvider

java.lang.Object
  extended by java.lang.Enum<ParavirtProvider>
      extended by org.virtualbox_5_0.ParavirtProvider
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ParavirtProvider>

public enum ParavirtProvider
extends java.lang.Enum<ParavirtProvider>

The paravirtualized guest interface provider. This enumeration represents possible values for theIMachine.getParavirtProvider()attribute. Interface ID: {696453EC-3742-4A05-BEAD-658CCBF2C944}


Enum Constant Summary
Default
          A default provider is automatically chosen according to the guest OS type.
HyperV
          Microsoft Hyper-V.
KVM
          Linux KVM.
Legacy
          Used for VMs which didn't used to have any provider settings.
Minimal
          A minimal set of features to expose to the paravirtualized guest.
None
          No provider is used.
 
Method Summary
static ParavirtProvider fromValue(long v)
           
static ParavirtProvider fromValue(java.lang.String v)
           
 int value()
           
static ParavirtProvider valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ParavirtProvider[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

None

public static final ParavirtProvider None
No provider is used.


Default

public static final ParavirtProvider Default
A default provider is automatically chosen according to the guest OS type.


Legacy

public static final ParavirtProvider Legacy
Used for VMs which didn't used to have any provider settings. Usually interpreted as None for most VMs.


Minimal

public static final ParavirtProvider Minimal
A minimal set of features to expose to the paravirtualized guest.


HyperV

public static final ParavirtProvider HyperV
Microsoft Hyper-V.


KVM

public static final ParavirtProvider KVM
Linux KVM.

Method Detail

values

public static ParavirtProvider[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ParavirtProvider c : ParavirtProvider.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ParavirtProvider valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static ParavirtProvider fromValue(long v)

fromValue

public static ParavirtProvider fromValue(java.lang.String v)