public enum SenderAction extends Enum<SenderAction>
| Enum Constant and Description |
|---|
MARK_SEEN |
TYPING_OFF |
TYPING_ON |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SenderAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SenderAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SenderAction TYPING_ON
public static final SenderAction TYPING_OFF
public static final SenderAction MARK_SEEN
public static SenderAction[] values()
for (SenderAction c : SenderAction.values()) System.out.println(c);
public static SenderAction 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 nullpublic String toString()
toString in class Enum<SenderAction>Copyright © 2019. All rights reserved.