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