public enum TypingAction extends Enum<TypingAction>
FbBotMillActionResponse.| Enum Constant and Description |
|---|
MARK_SEEN
Marks the message as seen.
|
TYPING_OFF
Removes the "is writing..." label if present.
|
TYPING_ON
Brings up the "is writing..." label.
|
| Modifier and Type | Method and Description |
|---|---|
static TypingAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypingAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypingAction MARK_SEEN
public static final TypingAction TYPING_ON
TYPING_OFF action is
sent.public static final TypingAction TYPING_OFF
public static TypingAction[] values()
for (TypingAction c : TypingAction.values()) System.out.println(c);
public static TypingAction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017 BotMill. All rights reserved.