public static enum MessageTag.Typing.State extends Enum<MessageTag.Typing.State>
| Enum Constant and Description |
|---|
ACTIVE
The user is actively typing.
|
DONE
The user has cleared the text field.
|
PAUSED
The user has paused typing with text in the text input field.
|
| Modifier and Type | Method and Description |
|---|---|
static MessageTag.Typing.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageTag.Typing.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageTag.Typing.State ACTIVE
public static final MessageTag.Typing.State DONE
public static final MessageTag.Typing.State PAUSED
public static MessageTag.Typing.State[] values()
for (MessageTag.Typing.State c : MessageTag.Typing.State.values()) System.out.println(c);
public static MessageTag.Typing.State 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 © 2013–2021 Kitteh. All rights reserved.