public enum ConversationActionType extends java.lang.Enum<ConversationActionType>
| Enum Constant and Description |
|---|
ALWAYS_CATEGORIZE
The current items and new items in the conversation will automatically be set with the categories identified in the Categories element.
|
ALWAYS_DELETE
The current items and new items in the conversation will automatically be deleted.
|
ALWAYS_MOVE
The current items and new items in the conversation will automatically be moved to the folder identified by the DestinationFolderId element.
|
COPY
The current items in the conversation will be copied to the folder identified by the DestinationFolderId element.
|
DELETE
The current items in the conversation will be deleted.
|
MOVE
The current items in the conversation will be moved to the folder identified by the DestinationFolderId element.
|
SET_READ_STATE
The current items in the conversation will have their read state set.
|
| Modifier and Type | Method and Description |
|---|---|
static ConversationActionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConversationActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConversationActionType ALWAYS_CATEGORIZE
public static final ConversationActionType ALWAYS_DELETE
public static final ConversationActionType ALWAYS_MOVE
public static final ConversationActionType DELETE
public static final ConversationActionType MOVE
public static final ConversationActionType COPY
public static final ConversationActionType SET_READ_STATE
public static ConversationActionType[] values()
for (ConversationActionType c : ConversationActionType.values()) System.out.println(c);
public static ConversationActionType 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