|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<NetInterfaceType> com.eurotech.framework.net.NetInterfaceType
public enum NetInterfaceType
Used to store network interface types
Enum Constant Summary | |
---|---|
ADSL
The device is an ADSL device supporting PPPoE and PPPoATM protocols. |
|
BOND
The device is a bond master interface. |
|
BT
The device is Bluetooth device that provides PAN or DUN capabilities. |
|
ETHERNET
The device is wired Ethernet device. |
|
INFINIBAND
The device is an IP-capable InfiniBand interface. |
|
LOOPBACK
The device is a loopback device. |
|
MODEM
The device is a modem supporting one or more of analog telephone, CDMA/EVDO, GSM/UMTS/HSPA, or LTE standards to access a cellular or wireline data network. |
|
OLPC_MESH
The device is an OLPC mesh networking device. |
|
UNKNOWN
The device type is unknown. |
|
UNUSED1
Unused |
|
UNUSED2
Unused |
|
VLAN
The device is a VLAN interface. |
|
WIFI
The device is an 802.11 WiFi device. |
|
WIMAX
The device is an 802.16e Mobile WiMAX device. |
Method Summary | |
---|---|
static NetInterfaceType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static NetInterfaceType[] |
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 |
---|
public static final NetInterfaceType UNKNOWN
public static final NetInterfaceType ETHERNET
public static final NetInterfaceType WIFI
public static final NetInterfaceType UNUSED1
public static final NetInterfaceType UNUSED2
public static final NetInterfaceType BT
public static final NetInterfaceType OLPC_MESH
public static final NetInterfaceType WIMAX
public static final NetInterfaceType MODEM
public static final NetInterfaceType INFINIBAND
public static final NetInterfaceType BOND
public static final NetInterfaceType VLAN
public static final NetInterfaceType ADSL
public static final NetInterfaceType LOOPBACK
Method Detail |
---|
public static NetInterfaceType[] values()
for (NetInterfaceType c : NetInterfaceType.values()) System.out.println(c);
public static NetInterfaceType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |