public enum MessageActionFlag extends java.lang.Enum<MessageActionFlag>
| Enum Constant and Description |
|---|
ANY
any
|
CALL
call
|
DO_NOT_FORWARD
do Not Forward
|
FOLLOW_UP
follow Up
|
FORWARD
forward
|
FYI
fyi
|
NO_RESPONSE_NECESSARY
no Response Necessary
|
READ
read
|
REPLY
reply
|
REPLY_TO_ALL
reply To All
|
REVIEW
review
|
UNEXPECTED_VALUE
For MessageActionFlag values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static MessageActionFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageActionFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageActionFlag ANY
public static final MessageActionFlag CALL
public static final MessageActionFlag DO_NOT_FORWARD
public static final MessageActionFlag FOLLOW_UP
public static final MessageActionFlag FYI
public static final MessageActionFlag FORWARD
public static final MessageActionFlag NO_RESPONSE_NECESSARY
public static final MessageActionFlag READ
public static final MessageActionFlag REPLY
public static final MessageActionFlag REPLY_TO_ALL
public static final MessageActionFlag REVIEW
public static final MessageActionFlag UNEXPECTED_VALUE
public static MessageActionFlag[] values()
for (MessageActionFlag c : MessageActionFlag.values()) System.out.println(c);
public static MessageActionFlag 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