public enum DisplayType extends java.lang.Enum<DisplayType>
| Enum Constant and Description |
|---|
AGENT
An automated agent, such as Quote-Of-The-Day or a weather chart display.
|
DISTRIBUTION_LIST
A distribution list.
|
FOLDER
Display default folder icon adjacent to folder.
|
FOLDER_LINK
Display default folder link icon adjacent to folder rather than the default folder icon.
|
FOLDER_SPECIAL
Display icon for a folder with an application-specific distinction, such as a special type of public folder.
|
FORUM
A forum, such as a bulletin board service or a public or shared folder.
|
GLOBAL_ADDRESS_BOOK
A global address book.
|
LOCAL_ADDRESS_BOOK
A local address book that you share with a small workgroup.
|
MAIL_USER
A typical messaging user.
|
MODIFIABLE
Modifiable; the container should be denoted as modifiable in the user interface.
|
NONE
None.
|
NOT_SPECIFIC
Does not match any of the other settings.
|
ORGANIZATION
A special alias defined for a large group, such as helpdesk, accounting, or blood-drive coordinator.
|
PRIVATE_DISTRIBUTION_LIST
A private, personally administered distribution list.
|
REMOTE_MAIL_USER
A recipient known to be from a foreign or remote messaging system.
|
WIDE_AREA_NETWORK_ADDRESS_BOOK
A wide area network address book.
|
| Modifier and Type | Method and Description |
|---|---|
static DisplayType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisplayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayType AGENT
public static final DisplayType DISTRIBUTION_LIST
public static final DisplayType FOLDER
public static final DisplayType FOLDER_LINK
public static final DisplayType FOLDER_SPECIAL
public static final DisplayType FORUM
public static final DisplayType GLOBAL_ADDRESS_BOOK
public static final DisplayType LOCAL_ADDRESS_BOOK
public static final DisplayType MAIL_USER
public static final DisplayType MODIFIABLE
public static final DisplayType ORGANIZATION
public static final DisplayType PRIVATE_DISTRIBUTION_LIST
public static final DisplayType REMOTE_MAIL_USER
public static final DisplayType WIDE_AREA_NETWORK_ADDRESS_BOOK
public static final DisplayType NOT_SPECIFIC
public static final DisplayType NONE
public static DisplayType[] values()
for (DisplayType c : DisplayType.values()) System.out.println(c);
public static DisplayType 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