Enum ResponseActions
- java.lang.Object
-
- java.lang.Enum<ResponseActions>
-
- microsoft.exchange.webservices.data.core.enumeration.service.ResponseActions
-
- All Implemented Interfaces:
Serializable,Comparable<ResponseActions>
public enum ResponseActions extends Enum<ResponseActions>
Defines the response actions that can be taken on an item.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AcceptThe Accept.CancelThe Cancel.DeclineThe Decline.ForwardThe Forward.NoneThe None.PostReplyThe Post reply.RemoveFromCalendarThe Remove from calendar.ReplyThe Reply.ReplyAllThe Reply all.SuppressReadReceiptThe Suppress read receipt.TentativelyAcceptThe Tentatively accept.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResponseActionsvalueOf(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.
-
-
-
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(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
-
-