public enum FlaggedForAction extends java.lang.Enum<FlaggedForAction>
| Enum Constant and Description |
|---|
ANY
The message is flagged with any action.
|
CALL
The recipient is requested to call the sender.
|
DO_NOT_FORWARD
The recipient is requested not to forward the message.
|
FOLLOW_UP
The recipient is requested to follow up on the message.
|
FORWARD
The recipient is requested to forward the message.
|
FYI
The recipient received the message for information.
|
NO_RESPONSE_NECESSARY
The recipient is informed that a response to the message is not required.
|
NONE
None.
|
READ
The recipient is requested to read the message.
|
REPLY
The recipient is requested to reply to the sender of the message.
|
REPLY_TO_ALL
The recipient is requested to reply to everyone the message was sent to.
|
REVIEW
The recipient is requested to review the message.
|
| Modifier and Type | Method and Description |
|---|---|
static FlaggedForAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlaggedForAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlaggedForAction ANY
public static final FlaggedForAction CALL
public static final FlaggedForAction DO_NOT_FORWARD
public static final FlaggedForAction FOLLOW_UP
public static final FlaggedForAction FYI
public static final FlaggedForAction FORWARD
public static final FlaggedForAction NO_RESPONSE_NECESSARY
public static final FlaggedForAction READ
public static final FlaggedForAction REPLY
public static final FlaggedForAction REPLY_TO_ALL
public static final FlaggedForAction REVIEW
public static final FlaggedForAction NONE
public static FlaggedForAction[] values()
for (FlaggedForAction c : FlaggedForAction.values()) System.out.println(c);
public static FlaggedForAction 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