public enum PredictedMessageAction extends java.lang.Enum<PredictedMessageAction>
| Enum Constant and Description |
|---|
DELETE
The predicted next action is a deletion.
|
FOLLOW_UP
The predicted next action is a followup.
|
IGNORE
The predicted next action is that the item will be ignored.
|
MOVE_TO_FOLDER
The predicted next action is a move to a different folder.
|
NONE
The item has no predicted next action.
|
READ
The predicted next action is a read.
|
RESPONSE
The predicted next action is a response.
|
| Modifier and Type | Method and Description |
|---|---|
static PredictedMessageAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PredictedMessageAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PredictedMessageAction NONE
public static final PredictedMessageAction RESPONSE
public static final PredictedMessageAction FOLLOW_UP
public static final PredictedMessageAction MOVE_TO_FOLDER
public static final PredictedMessageAction DELETE
public static final PredictedMessageAction READ
public static final PredictedMessageAction IGNORE
public static PredictedMessageAction[] values()
for (PredictedMessageAction c : PredictedMessageAction.values()) System.out.println(c);
public static PredictedMessageAction 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