org.virtualbox_7_0
Enum NetworkAdapterType

java.lang.Object
  extended by java.lang.Enum<NetworkAdapterType>
      extended by org.virtualbox_7_0.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
Am79C960
          AMD PCnet-ISA/NE2100 network card (Am79C960).
Am79C970A
          AMD PCNet-PCI II network card (Am79C970A).
Am79C973
          AMD PCNet-FAST III network card (Am79C973).
ELNK1
          3Com EtherLink network card (3C501/3C500).
ELNK2
          3Com EtherLink II network card (3C503).
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).
NE1000
          Novell NE1000 network card (NE1000).
NE2000
          Novell NE2000 network card (NE2000).
Null
          Null value (never used by the API).
Virtio
          Virtio network device.
WD8003
          WD/SMC EtherCard Plus network card (WD8003E).
WD8013
          WD/SMC EtherCard Plus 16 network card (WD8013EBT).
 
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.


Am79C960

public static final NetworkAdapterType Am79C960
AMD PCnet-ISA/NE2100 network card (Am79C960).


NE2000

public static final NetworkAdapterType NE2000
Novell NE2000 network card (NE2000).


NE1000

public static final NetworkAdapterType NE1000
Novell NE1000 network card (NE1000).


WD8013

public static final NetworkAdapterType WD8013
WD/SMC EtherCard Plus 16 network card (WD8013EBT).


WD8003

public static final NetworkAdapterType WD8003
WD/SMC EtherCard Plus network card (WD8003E).


ELNK2

public static final NetworkAdapterType ELNK2
3Com EtherLink II network card (3C503).


ELNK1

public static final NetworkAdapterType ELNK1
3Com EtherLink network card (3C501/3C500).

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)