public static enum SMS.Type extends Enum<SMS.Type>
| Enum Constant and Description |
|---|
CONFIRMATION_CODE_REQUEST |
CONFIRMATION_CODE_SUBMIT |
INCOMING
INCOMING - An incomming sms message.
|
OUTGOING |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static SMS.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SMS.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SMS.Type INCOMING
public static final SMS.Type OUTGOING
public static final SMS.Type CONFIRMATION_CODE_REQUEST
public static final SMS.Type CONFIRMATION_CODE_SUBMIT
public static final SMS.Type UNKNOWN
public static SMS.Type[] values()
for (SMS.Type c : SMS.Type.values()) System.out.println(c);
public static SMS.Type 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 nullCopyright © 2013. All Rights Reserved.