| Enum Constant and Description |
|---|
ANY |
CS |
MODE_2G |
MODE_3G |
MODE_4G |
MODE_5G |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static ModemMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModemMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModemMode NONE
public static final ModemMode CS
public static final ModemMode MODE_2G
public static final ModemMode MODE_3G
public static final ModemMode MODE_4G
public static final ModemMode MODE_5G
public static final ModemMode ANY
public static ModemMode[] values()
for (ModemMode c : ModemMode.values()) System.out.println(c);
public static ModemMode 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