public static enum SMSSubmit.ReplyPath extends Enum<SMSSubmit.ReplyPath>
The API offered by this class is as if the type were specified in ASN.1 as follows.
ReplyPath ::= ENUMERATED {
NOT_REQUESTED (0),
REQUESTED (1)
}| Enum Constant and Description |
|---|
NOT_REQUESTED
Reply Path indicator value (0) corresponding to not requested.
|
REQUESTED
Reply Path indicator value (1) corresponding to requested.
|
| Modifier and Type | Method and Description |
|---|---|
static SMSSubmit.ReplyPath |
fromValue(int value)
Returns the enumeration constant for a given encoded value.
|
int |
intValue()
Gets the integer ASN.1 encoded value of this enumeration constant.
|
static SMSSubmit.ReplyPath |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SMSSubmit.ReplyPath[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SMSSubmit.ReplyPath NOT_REQUESTED
public static final SMSSubmit.ReplyPath REQUESTED
public static SMSSubmit.ReplyPath[] values()
for (SMSSubmit.ReplyPath c : SMSSubmit.ReplyPath.values()) System.out.println(c);
public static SMSSubmit.ReplyPath 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 int intValue()
public static SMSSubmit.ReplyPath fromValue(int value)
value - encoded valueIllegalArgumentException - if there is no enumeration constant with the given encoded value