public enum WifiCapability extends java.lang.Enum<WifiCapability>
| Enum Constant and Description |
|---|
ADHOC
The device supports Ad-Hoc mode.
|
AP
The device supports Access Point mode.
|
CIPHER_CCMP
The device supports the AES/CCMP encryption.
|
CIPHER_TKIP
The device supports the TKIP encryption.
|
CIPHER_WEP104
The device supports 104/128-bit WEP encryption.
|
CIPHER_WEP40
The device supports 40/64-bit WEP encryption.
|
FREQ_2GHZ
The device supports 2.4GHz frequencies.
|
FREQ_5GHZ
The device supports 5GHz frequencies.
|
FREQ_VALID
The device reports frequency capabilities.
|
IBSS_RSN
The device supports WPA2 in IBSS networks
|
MESH
The device supports mesh points.
|
NONE
The device has no encryption/authentication capabilities
|
RSN
The device supports the WPA2/RSN encryption/authentication protocol.
|
WPA
The device supports the WPA1 encryption/authentication protocol.
|
| Modifier and Type | Method and Description |
|---|---|
static WifiCapability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WifiCapability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WifiCapability NONE
public static final WifiCapability CIPHER_WEP40
public static final WifiCapability CIPHER_WEP104
public static final WifiCapability CIPHER_TKIP
public static final WifiCapability CIPHER_CCMP
public static final WifiCapability WPA
public static final WifiCapability RSN
public static final WifiCapability AP
public static final WifiCapability ADHOC
public static final WifiCapability FREQ_VALID
public static final WifiCapability FREQ_2GHZ
public static final WifiCapability FREQ_5GHZ
public static final WifiCapability MESH
public static final WifiCapability IBSS_RSN
public static WifiCapability[] values()
for (WifiCapability c : WifiCapability.values()) System.out.println(c);
public static WifiCapability 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 null