public static enum SmsMessage.MessageClass extends Enum<SmsMessage.MessageClass>
| Enum Constant and Description |
|---|
CLASS_0 |
CLASS_1 |
CLASS_2 |
CLASS_3 |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static SmsMessage.MessageClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SmsMessage.MessageClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmsMessage.MessageClass CLASS_0
public static final SmsMessage.MessageClass CLASS_1
public static final SmsMessage.MessageClass CLASS_2
public static final SmsMessage.MessageClass CLASS_3
public static final SmsMessage.MessageClass UNKNOWN
public static SmsMessage.MessageClass[] values()
for (SmsMessage.MessageClass c : SmsMessage.MessageClass.values()) System.out.println(c);
public static SmsMessage.MessageClass 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 © 2008-2013. All Rights Reserved.