Enum FlaggedForAction
- java.lang.Object
-
- java.lang.Enum<FlaggedForAction>
-
- microsoft.exchange.webservices.data.core.enumeration.misc.FlaggedForAction
-
- All Implemented Interfaces:
Serializable,Comparable<FlaggedForAction>
public enum FlaggedForAction extends Enum<FlaggedForAction>
Defines the follow-up actions that may be stamped on a message.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AnyThe message is flagged with any action.CallThe recipient is requested to call the sender.DoNotForwardThe recipient is requested not to forward the message.FollowUpThe recipient is requested to follow up on the message.ForwardThe recipient is requested to forward the message.FYIThe recipient received the message for information.NoResponseNecessaryThe recipient is informed that a response to the message is not required.ReadThe recipient is requested to read the message.ReplyThe recipient is requested to reply to the sender of the message.ReplyToAllThe recipient is requested to reply to everyone the message was sent to.ReviewThe recipient is requested to review the message.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FlaggedForActionvalueOf(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.
-
-
-
Enum Constant Detail
-
Any
public static final FlaggedForAction Any
The message is flagged with any action.
-
Call
public static final FlaggedForAction Call
The recipient is requested to call the sender.
-
DoNotForward
public static final FlaggedForAction DoNotForward
The recipient is requested not to forward the message.
-
FollowUp
public static final FlaggedForAction FollowUp
The recipient is requested to follow up on the message.
-
FYI
public static final FlaggedForAction FYI
The recipient received the message for information.
-
Forward
public static final FlaggedForAction Forward
The recipient is requested to forward the message.
-
NoResponseNecessary
public static final FlaggedForAction NoResponseNecessary
The recipient is informed that a response to the message is not required.
-
Read
public static final FlaggedForAction Read
The recipient is requested to read the message.
-
Reply
public static final FlaggedForAction Reply
The recipient is requested to reply to the sender of the message.
-
ReplyToAll
public static final FlaggedForAction ReplyToAll
The recipient is requested to reply to everyone the message was sent to.
-
Review
public static final FlaggedForAction Review
The recipient is requested to review the message.
-
-
Method Detail
-
values
public static FlaggedForAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FlaggedForAction c : FlaggedForAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlaggedForAction valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-