public enum MailboxType extends java.lang.Enum<MailboxType>
| Enum Constant and Description |
|---|
CONTACT
Represents a contact in a user's mailbox.
|
GROUP_MAILBOX |
IMPLICIT_CONTACT |
MAILBOX
Represents a mail-enabled Active Directory object.
|
NONE
Represents an unknown type of mailbox.
|
ONE_OFF |
PRIVATE_DISTRIBUTION_LIST
Represents a private distribution list in a user's mailbox.
|
PUBLIC_DISTRIBUTION_LIST
Represents a public distribution list.
|
PUBLIC_FOLDER
Represents a public folder.
|
| Modifier and Type | Method and Description |
|---|---|
static MailboxType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MailboxType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MailboxType MAILBOX
public static final MailboxType PUBLIC_DISTRIBUTION_LIST
public static final MailboxType PRIVATE_DISTRIBUTION_LIST
public static final MailboxType CONTACT
public static final MailboxType PUBLIC_FOLDER
public static final MailboxType ONE_OFF
public static final MailboxType GROUP_MAILBOX
public static final MailboxType IMPLICIT_CONTACT
public static final MailboxType NONE
public static MailboxType[] values()
for (MailboxType c : MailboxType.values()) System.out.println(c);
public static MailboxType 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