Enum MAPPS_SubscriberState.Choice
-
- All Implemented Interfaces:
Serializable
,Comparable<MAPPS_SubscriberState.Choice>
- Enclosing class:
- MAPPS_SubscriberState
public static enum MAPPS_SubscriberState.Choice extends Enum<MAPPS_SubscriberState.Choice>
API for MAP-MS-DataTypes.PS-SubscriberState.Choice.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NETDETNOTREACHABLE
NOTPROVIDEDFROMSGSNORMME
PS_ATTACHEDNOTREACHABLEFORPAGING
PS_ATTACHEDREACHABLEFORPAGING
PS_DETACHED
PS_PDP_ACTIVENOTREACHABLEFORPAGING
PS_PDP_ACTIVEREACHABLEFORPAGING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MAPPS_SubscriberState.Choice
valueOf(String name)
Returns the enum constant of this type with the specified name.static MAPPS_SubscriberState.Choice[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOTPROVIDEDFROMSGSNORMME
public static final MAPPS_SubscriberState.Choice NOTPROVIDEDFROMSGSNORMME
-
PS_DETACHED
public static final MAPPS_SubscriberState.Choice PS_DETACHED
-
PS_ATTACHEDNOTREACHABLEFORPAGING
public static final MAPPS_SubscriberState.Choice PS_ATTACHEDNOTREACHABLEFORPAGING
-
PS_ATTACHEDREACHABLEFORPAGING
public static final MAPPS_SubscriberState.Choice PS_ATTACHEDREACHABLEFORPAGING
-
PS_PDP_ACTIVENOTREACHABLEFORPAGING
public static final MAPPS_SubscriberState.Choice PS_PDP_ACTIVENOTREACHABLEFORPAGING
-
PS_PDP_ACTIVEREACHABLEFORPAGING
public static final MAPPS_SubscriberState.Choice PS_PDP_ACTIVEREACHABLEFORPAGING
-
NETDETNOTREACHABLE
public static final MAPPS_SubscriberState.Choice NETDETNOTREACHABLE
-
-
Method Detail
-
values
public static MAPPS_SubscriberState.Choice[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MAPPS_SubscriberState.Choice c : MAPPS_SubscriberState.Choice.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MAPPS_SubscriberState.Choice valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-