public static enum EmulatorConsole.GsmMode extends java.lang.Enum<EmulatorConsole.GsmMode>
| Enum Constant and Description |
|---|
DENIED |
HOME |
ROAMING |
SEARCHING |
UNKNOWN |
UNREGISTERED |
| Modifier and Type | Method and Description |
|---|---|
static EmulatorConsole.GsmMode |
getEnum(java.lang.String tag) |
java.lang.String |
getTag()
Returns the first tag of the enum.
|
static EmulatorConsole.GsmMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EmulatorConsole.GsmMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmulatorConsole.GsmMode UNKNOWN
public static final EmulatorConsole.GsmMode UNREGISTERED
public static final EmulatorConsole.GsmMode HOME
public static final EmulatorConsole.GsmMode ROAMING
public static final EmulatorConsole.GsmMode SEARCHING
public static final EmulatorConsole.GsmMode DENIED
public static EmulatorConsole.GsmMode[] values()
for (EmulatorConsole.GsmMode c : EmulatorConsole.GsmMode.values()) System.out.println(c);
public static EmulatorConsole.GsmMode 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 nullpublic static EmulatorConsole.GsmMode getEnum(java.lang.String tag)
public java.lang.String getTag()