public static enum ConversationManagement.QuestionStage extends java.lang.Enum<ConversationManagement.QuestionStage>
Enum Constant and Description |
---|
CLUE
This stage indicates that the player has been asked what clue they want to ask about.
|
STYLE
Thus stage means that the player has been asked the how they want to ask the question
e.g.
|
TYPE
This stage indicates that the player has been asked what type of question they have asked
e.g.
|
Modifier and Type | Method and Description |
---|---|
static ConversationManagement.QuestionStage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConversationManagement.QuestionStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConversationManagement.QuestionStage TYPE
public static final ConversationManagement.QuestionStage STYLE
public static final ConversationManagement.QuestionStage CLUE
public static ConversationManagement.QuestionStage[] values()
for (ConversationManagement.QuestionStage c : ConversationManagement.QuestionStage.values()) System.out.println(c);
public static ConversationManagement.QuestionStage 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