public enum SearchItemKind extends java.lang.Enum<SearchItemKind>
| Enum Constant and Description |
|---|
CONTACTS |
DOCS |
EMAIL |
FAXES |
IM |
JOURNALS |
MEETINGS |
NOTES |
POSTS |
RSS_FEEDS |
TASKS |
VOICE_MAIL |
| Modifier and Type | Method and Description |
|---|---|
static SearchItemKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchItemKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchItemKind EMAIL
public static final SearchItemKind MEETINGS
public static final SearchItemKind TASKS
public static final SearchItemKind NOTES
public static final SearchItemKind DOCS
public static final SearchItemKind JOURNALS
public static final SearchItemKind CONTACTS
public static final SearchItemKind IM
public static final SearchItemKind VOICE_MAIL
public static final SearchItemKind FAXES
public static final SearchItemKind POSTS
public static final SearchItemKind RSS_FEEDS
public static SearchItemKind[] values()
for (SearchItemKind c : SearchItemKind.values()) System.out.println(c);
public static SearchItemKind 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 namejava.lang.NullPointerException - if the argument is null