public static enum Conversation.Phase extends Enum<Conversation.Phase>
| Enum Constant and Description |
|---|
CONTINUE
Deprecated.
|
FINISH
Deprecated.
|
NONE
Deprecated.
|
START
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static Conversation.Phase |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Conversation.Phase[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conversation.Phase START
public static final Conversation.Phase CONTINUE
public static final Conversation.Phase FINISH
@Deprecated public static final Conversation.Phase NONE
public static Conversation.Phase[] values()
for (Conversation.Phase c : Conversation.Phase.values()) System.out.println(c);
public static Conversation.Phase 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 null