public static enum ApnInfo.MvnoType extends java.lang.Enum<ApnInfo.MvnoType>
Enum Constant and Description |
---|
MVNO_TYPE_GID
The id for apn mobile virtual network operator gid type.
|
MVNO_TYPE_IMSI
The id for apn mobile virtual network operator imsi type.
|
MVNO_TYPE_NONE
The id for apn none mobile virtual network operator type.
|
MVNO_TYPE_SPN
The id for apn mobile virtual network operator spn type.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Gets constant value.
|
static ApnInfo.MvnoType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ApnInfo.MvnoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApnInfo.MvnoType MVNO_TYPE_NONE
public static final ApnInfo.MvnoType MVNO_TYPE_SPN
public static final ApnInfo.MvnoType MVNO_TYPE_IMSI
public static final ApnInfo.MvnoType MVNO_TYPE_GID
public static ApnInfo.MvnoType[] values()
for (ApnInfo.MvnoType c : ApnInfo.MvnoType.values()) System.out.println(c);
public static ApnInfo.MvnoType 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 int getValue()