Enum Class DisplayType
- All Implemented Interfaces:
Serializable,Comparable<DisplayType>,Constable
Specifies the display type of an address book entry (the value of PR_DISPLAY_TYPE).
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn automated agent, such as Quote-Of-The-Day.A distribution list.A folder.A link to a folder.A special folder.A forum, such as a bulletin board or a public folder.A global address book.A local (personal) address book.A messaging user (a person).An address book that can be modified.The display type is not specified.The display type is not specific.An organization, such as a help desk.A private distribution list.A messaging user whose primary address is in a remote messaging system.A wide area network address book. -
Method Summary
Modifier and TypeMethodDescriptionstatic DisplayTypeReturns the enum constant of this class with the specified name.static DisplayType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AGENT
An automated agent, such as Quote-Of-The-Day. -
DISTRIBUTION_LIST
A distribution list. -
FOLDER
A folder. -
FOLDER_LINK
A link to a folder. -
FOLDER_SPECIAL
A special folder. -
FORUM
A forum, such as a bulletin board or a public folder. -
GLOBAL_ADDRESS_BOOK
A global address book. -
LOCAL_ADDRESS_BOOK
A local (personal) address book. -
MAIL_USER
A messaging user (a person). -
MODIFIABLE
An address book that can be modified. -
ORGANIZATION
An organization, such as a help desk. -
PRIVATE_DISTRIBUTION_LIST
A private distribution list. -
REMOTE_MAIL_USER
A messaging user whose primary address is in a remote messaging system. -
WIDE_AREA_NETWORK_ADDRESS_BOOK
A wide area network address book. -
NOT_SPECIFIC
The display type is not specific. -
NONE
The display type is not specified.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-