public enum MailTipType extends java.lang.Enum<MailTipType>
| Enum Constant and Description |
|---|
ALL
Represents all available mail tips.
|
CUSTOM_MAIL_TIP
Represents a custom mail tip.
|
DELIVERY_RESTRICTION
Indicates whether delivery restrictions will prevent the sender's message from reaching the recipient.
|
EXTERNAL_MEMBER_COUNT
Represents the count of external members.
|
INVALID_RECIPIENT
Indicates whether the recipient is valid.
|
MAILBOX_FULL_STATUS
Represents the status for a mailbox being full.
|
MAX_MESSAGE_SIZE
Represents the maximum message size a recipient can accept.
|
MODERATION_STATUS
Indicates whether the sender's message will be reviewed by a moderator.
|
OUT_OF_OFFICE_MESSAGE
Represents the Out of Office (OOF)message.
|
TOTAL_MEMBER_COUNT
Represents the count of all members.
|
| Modifier and Type | Method and Description |
|---|---|
static MailTipType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MailTipType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MailTipType ALL
public static final MailTipType OUT_OF_OFFICE_MESSAGE
public static final MailTipType MAILBOX_FULL_STATUS
public static final MailTipType CUSTOM_MAIL_TIP
public static final MailTipType EXTERNAL_MEMBER_COUNT
public static final MailTipType TOTAL_MEMBER_COUNT
public static final MailTipType MAX_MESSAGE_SIZE
public static final MailTipType DELIVERY_RESTRICTION
public static final MailTipType MODERATION_STATUS
public static final MailTipType INVALID_RECIPIENT
public static MailTipType[] values()
for (MailTipType c : MailTipType.values()) System.out.println(c);
public static MailTipType 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