public enum SimsToBeRegistered extends java.lang.Enum<SimsToBeRegistered>
Enum Constant and Description |
---|
ALL
Registers all the sims available in Telephony Subscription
|
NONE
Does not register any of the sims.
|
SIM_ONE
Registers Sim in Sim slot 0 / Sim Tray 1
|
SIM_TWO
Registers Sim in Sim slot 1 / Sim Tray 2
|
Modifier and Type | Method and Description |
---|---|
static SimsToBeRegistered |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimsToBeRegistered[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimsToBeRegistered ALL
public static final SimsToBeRegistered SIM_ONE
public static final SimsToBeRegistered SIM_TWO
public static final SimsToBeRegistered NONE
public static SimsToBeRegistered[] values()
for (SimsToBeRegistered c : SimsToBeRegistered.values()) System.out.println(c);
public static SimsToBeRegistered 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