microsoft.exchange.webservices.data
Enum FlaggedForAction

java.lang.Object
  extended by java.lang.Enum<FlaggedForAction>
      extended by microsoft.exchange.webservices.data.FlaggedForAction
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FlaggedForAction>

public enum FlaggedForAction
extends java.lang.Enum<FlaggedForAction>

Defines the follow-up actions that may be stamped on a message.


Enum Constant Summary
Any
          The message is flagged with any action.
Call
          The recipient is requested to call the sender.
DoNotForward
          The recipient is requested not to forward the message.
FollowUp
          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.
NoResponseNecessary
          The recipient is informed that a response to the message is not required.
Read
          The recipient is requested to read the message.
Reply
          The recipient is requested to reply to the sender of the message.
ReplyToAll
          The recipient is requested to reply to everyone the message was sent to.
Review
          The recipient is requested to review the message.
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null