| Enum Constant and Description |
|---|
ABG
Wi-Fi supports a/b/g
|
ABGN
Wi-Fi supports a/b/g/n
|
BG
Wi-Fi supports b/g
|
BGN
Wi-Fi supports b/g/n
|
NONE
No Wi-Fi chip has been detected
|
| Modifier and Type | Method and Description |
|---|---|
static WiFiType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WiFiType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WiFiType NONE
public static final WiFiType BG
public static final WiFiType ABG
public static final WiFiType ABGN
public static final WiFiType BGN
public static WiFiType[] values()
for (WiFiType c : WiFiType.values()) System.out.println(c);
public static WiFiType 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