public enum WifiCiphers extends Enum<WifiCiphers>
Modifier and Type | Method and Description |
---|---|
static int |
getCode(WifiCiphers ciphers) |
static WifiCiphers |
parseCode(int code) |
static String |
toString(WifiCiphers ciphers) |
static WifiCiphers |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WifiCiphers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WifiCiphers CCMP_TKIP
public static final WifiCiphers TKIP
public static final WifiCiphers CCMP
public static WifiCiphers[] values()
for (WifiCiphers c : WifiCiphers.values()) System.out.println(c);
public static WifiCiphers valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static WifiCiphers parseCode(int code)
public static int getCode(WifiCiphers ciphers)
public static String toString(WifiCiphers ciphers)
Copyright © 2013. All Rights Reserved.