Enum MAPAdditional_Number.Choice
-
- All Implemented Interfaces:
Serializable
,Comparable<MAPAdditional_Number.Choice>
- Enclosing class:
- MAPAdditional_Number
public static enum MAPAdditional_Number.Choice extends Enum<MAPAdditional_Number.Choice>
API for MAP-SM-DataTypes.Additional-Number.Choice.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MSC_NUMBER
SGSN_NUMBER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MAPAdditional_Number.Choice
valueOf(String name)
Returns the enum constant of this type with the specified name.static MAPAdditional_Number.Choice[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MSC_NUMBER
public static final MAPAdditional_Number.Choice MSC_NUMBER
-
SGSN_NUMBER
public static final MAPAdditional_Number.Choice SGSN_NUMBER
-
-
Method Detail
-
values
public static MAPAdditional_Number.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 (MAPAdditional_Number.Choice c : MAPAdditional_Number.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 MAPAdditional_Number.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
-
-