public static enum ConversationReplyListener.RegistrationAction extends Enum<ConversationReplyListener.RegistrationAction>
ConversationReplyListener.| Enum Constant and Description |
|---|
CONTINUE_LISTENING
Marks that the listener should continue listening for replies
|
STOP_LISTENING
Marks that the listener should stop listening for replies
|
| Modifier and Type | Method and Description |
|---|---|
static ConversationReplyListener.RegistrationAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConversationReplyListener.RegistrationAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConversationReplyListener.RegistrationAction CONTINUE_LISTENING
public static final ConversationReplyListener.RegistrationAction STOP_LISTENING
public static ConversationReplyListener.RegistrationAction[] values()
for (ConversationReplyListener.RegistrationAction c : ConversationReplyListener.RegistrationAction.values()) System.out.println(c);
public static ConversationReplyListener.RegistrationAction 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 © 2022. All rights reserved.