|
SMSLib 3.5.3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Contact.ContactLocation>
org.smslib.Contact.ContactLocation
public static enum Contact.ContactLocation
Enum Constant Summary | |
---|---|
ALL_ENTRIES
Represents the phonebook entries from both the phone's memory and SIM card. |
|
DIALLED_CALLS
Represents the dialled numbers. |
|
MISSED_CALLS
Represents the missed inbound calls. |
|
PHONE_ENTRIES
Represents the normal phonebook entries stored in the phone's memory. |
|
SIM_ENTRIES
Represents the normal phonebook entrues stored in the SIM card. |
|
UNKNOWN_ENTRY
Represents an unknown phonebook entry. |
Method Summary | |
---|---|
static Contact.ContactLocation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Contact.ContactLocation[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Contact.ContactLocation DIALLED_CALLS
public static final Contact.ContactLocation MISSED_CALLS
public static final Contact.ContactLocation PHONE_ENTRIES
public static final Contact.ContactLocation SIM_ENTRIES
public static final Contact.ContactLocation ALL_ENTRIES
public static final Contact.ContactLocation UNKNOWN_ENTRY
Method Detail |
---|
public static Contact.ContactLocation[] values()
for (Contact.ContactLocation c : Contact.ContactLocation.values()) System.out.println(c);
public static Contact.ContactLocation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
SMSLib 3.5.3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |