public enum WifiRadioMode extends java.lang.Enum<WifiRadioMode>
| Enum Constant and Description |
|---|
RADIO_MODE_80211_AC |
RADIO_MODE_80211A |
RADIO_MODE_80211B |
RADIO_MODE_80211G |
RADIO_MODE_80211NHT20 |
RADIO_MODE_80211NHT40_ABOVE |
RADIO_MODE_80211NHT40_BELOW |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static WifiRadioMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WifiRadioMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WifiRadioMode UNKNOWN
public static final WifiRadioMode RADIO_MODE_80211A
public static final WifiRadioMode RADIO_MODE_80211B
public static final WifiRadioMode RADIO_MODE_80211G
public static final WifiRadioMode RADIO_MODE_80211NHT20
public static final WifiRadioMode RADIO_MODE_80211NHT40_BELOW
public static final WifiRadioMode RADIO_MODE_80211NHT40_ABOVE
public static final WifiRadioMode RADIO_MODE_80211_AC
public static WifiRadioMode[] values()
for (WifiRadioMode c : WifiRadioMode.values()) System.out.println(c);
public static WifiRadioMode 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