org.virtualbox_4_1
Enum NetworkAdapterType

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

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

Network adapter type. Interface ID: {3C2281E4-D952-4E87-8C7D-24379CB6A81C}


Enum Constant Summary
Am79C970A
          AMD PCNet-PCI II network card (Am79C970A).
Am79C973
          AMD PCNet-FAST III network card (Am79C973).
I82540EM
          Intel PRO/1000 MT Desktop network card (82540EM).
I82543GC
          Intel PRO/1000 T Server network card (82543GC).
I82545EM
          Intel PRO/1000 MT Server network card (82545EM).
Null
          Null value (never used by the API).
Virtio
          Virtio network device.
 
Method Summary
static NetworkAdapterType fromValue(long v)
           
static NetworkAdapterType fromValue(java.lang.String v)
           
 int value()
           
static NetworkAdapterType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NetworkAdapterType[] 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

Null

public static final NetworkAdapterType Null
Null value (never used by the API).


Am79C970A

public static final NetworkAdapterType Am79C970A
AMD PCNet-PCI II network card (Am79C970A).


Am79C973

public static final NetworkAdapterType Am79C973
AMD PCNet-FAST III network card (Am79C973).


I82540EM

public static final NetworkAdapterType I82540EM
Intel PRO/1000 MT Desktop network card (82540EM).


I82543GC

public static final NetworkAdapterType I82543GC
Intel PRO/1000 T Server network card (82543GC).


I82545EM

public static final NetworkAdapterType I82545EM
Intel PRO/1000 MT Server network card (82545EM).


Virtio

public static final NetworkAdapterType Virtio
Virtio network device.

Method Detail

values

public static NetworkAdapterType[] 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 (NetworkAdapterType c : NetworkAdapterType.values())
    System.out.println(c);

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

valueOf

public static NetworkAdapterType 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 NetworkAdapterType fromValue(long v)

fromValue

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