public enum ChatMarkersState extends java.lang.Enum<ChatMarkersState>
| Enum Constant and Description |
|---|
acknowledged
The message has been acknowledged by some user interaction e.g.
|
displayed
The message has been displayed to a user in a active chat and not in a system notification.
|
markable
Indicates that a message can be marked with a Chat Marker and is therefore
a "markable message".
|
received
The message has been received by a client.
|
| Modifier and Type | Method and Description |
|---|---|
static ChatMarkersState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChatMarkersState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChatMarkersState markable
public static final ChatMarkersState received
public static final ChatMarkersState displayed
public static final ChatMarkersState acknowledged
public static ChatMarkersState[] values()
for (ChatMarkersState c : ChatMarkersState.values()) System.out.println(c);
public static ChatMarkersState 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