java.io.Serializable, java.lang.Comparable<Conversation.Phase>public static enum Conversation.Phase extends java.lang.Enum<Conversation.Phase>
| Enum Constant | Description | 
|---|---|
| CONTINUE | Deprecated. | 
| FINISH | Deprecated. | 
| NONE | Deprecated.  | 
| START | Deprecated. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static Conversation.Phase | valueOf(java.lang.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(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