public enum CAP3SMSCause extends Enum<CAP3SMSCause>
SMSCause ::=
ENUMERATED {
systemFailure(0),
unexpectedDataValue(1),
facilityNotSupported(2),
sM-DeliveryFailure(3),
releaseFromRadioInterface(4)
}
Used as field type by CAP3EventSpecificInformationSMS.O_smsFailureSpecificInfo.
| Enum Constant and Description |
|---|
facilityNotSupported |
releaseFromRadioInterface |
sM_DeliveryFailure |
systemFailure |
unexpectedDataValue |
| Modifier and Type | Method and Description |
|---|---|
static CAP3SMSCause |
fromValue(int value)
Returns the enumeration constant for a given ASN.1 encoded value.
|
int |
intValue()
Gets the integer ASN.1 encoded value of this enumeration constant.
|
static CAP3SMSCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CAP3SMSCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CAP3SMSCause systemFailure
public static final CAP3SMSCause unexpectedDataValue
public static final CAP3SMSCause facilityNotSupported
public static final CAP3SMSCause sM_DeliveryFailure
public static final CAP3SMSCause releaseFromRadioInterface
public static CAP3SMSCause[] values()
for (CAP3SMSCause c : CAP3SMSCause.values()) System.out.println(c);
public static CAP3SMSCause valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static CAP3SMSCause fromValue(int value)
value - integer ASN.1 encoded valuepublic int intValue()