Enum SMSDataCodingScheme.Choice
- java.lang.Object
-
- java.lang.Enum<SMSDataCodingScheme.Choice>
-
- com.opencloud.slee.resources.in.datatypes.sms.SMSDataCodingScheme.Choice
-
- All Implemented Interfaces:
Serializable
,Comparable<SMSDataCodingScheme.Choice>
- Enclosing class:
- SMSDataCodingScheme
public static enum SMSDataCodingScheme.Choice extends Enum<SMSDataCodingScheme.Choice>
Enumeration of discriminating values.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTODELETE
GENERALDATA
MESSAGECODING
MESSAGEWAITINGDISCARD
MESSAGEWAITINGSTOREGSM7
MESSAGEWAITINGSTOREUCS2
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SMSDataCodingScheme.Choice
valueOf(String name)
Returns the enum constant of this type with the specified name.static SMSDataCodingScheme.Choice[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERALDATA
public static final SMSDataCodingScheme.Choice GENERALDATA
-
AUTODELETE
public static final SMSDataCodingScheme.Choice AUTODELETE
-
MESSAGEWAITINGDISCARD
public static final SMSDataCodingScheme.Choice MESSAGEWAITINGDISCARD
-
MESSAGEWAITINGSTOREGSM7
public static final SMSDataCodingScheme.Choice MESSAGEWAITINGSTOREGSM7
-
MESSAGEWAITINGSTOREUCS2
public static final SMSDataCodingScheme.Choice MESSAGEWAITINGSTOREUCS2
-
MESSAGECODING
public static final SMSDataCodingScheme.Choice MESSAGECODING
-
-
Method Detail
-
values
public static SMSDataCodingScheme.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 (SMSDataCodingScheme.Choice c : SMSDataCodingScheme.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 SMSDataCodingScheme.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
-
-