microsoft.exchange.webservices.data
Enum ResponseActions

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

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

Defines the response actions that can be taken on an item.


Enum Constant Summary
Accept
          The Accept.
Cancel
          The Cancel.
Decline
          The Decline.
Forward
          The Forward.
None
          The None.
PostReply
          The Post reply.
RemoveFromCalendar
          The Remove from calendar.
Reply
          The Reply.
ReplyAll
          The Reply all.
SuppressReadReceipt
          The Suppress read receipt.
TentativelyAccept
          The Tentatively accept.
 
Method Summary
static ResponseActions valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ResponseActions[] 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

None

public static final ResponseActions None
The None.


Accept

public static final ResponseActions Accept
The Accept.


TentativelyAccept

public static final ResponseActions TentativelyAccept
The Tentatively accept.


Decline

public static final ResponseActions Decline
The Decline.


Reply

public static final ResponseActions Reply
The Reply.


ReplyAll

public static final ResponseActions ReplyAll
The Reply all.


Forward

public static final ResponseActions Forward
The Forward.


Cancel

public static final ResponseActions Cancel
The Cancel.


RemoveFromCalendar

public static final ResponseActions RemoveFromCalendar
The Remove from calendar.


SuppressReadReceipt

public static final ResponseActions SuppressReadReceipt
The Suppress read receipt.


PostReply

public static final ResponseActions PostReply
The Post reply.

Method Detail

values

public static ResponseActions[] 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 (ResponseActions c : ResponseActions.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ResponseActions 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