java.lang.CloneableBooleanPrompt, FixedSetPrompt, MessagePrompt, NumericPrompt, PlayerNamePrompt, RegexPrompt, StringPrompt, ValidatingPromptpublic interface Prompt
extends java.lang.Cloneable
Conversation. Each prompt
 displays text to the user and optionally waits for a user's response.
 Prompts are chained together into a directed graph that represents the
 conversation flow. To halt a conversation, END_OF_CONVERSATION is returned
 in liu of another Prompt object.| Modifier and Type | Field | Description | 
|---|---|---|
| static Prompt | END_OF_CONVERSATION | A convenience constant for indicating the end of a conversation. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Prompt | acceptInput(ConversationContext context,
           java.lang.String input) | Accepts and processes input from the user. | 
| boolean | blocksForInput(ConversationContext context) | Checks to see if this prompt implementation should wait for user input
 or immediately display the next prompt. | 
| java.lang.String | getPromptText(ConversationContext context) | Gets the text to display to the user when this prompt is first
 presented. | 
static final Prompt END_OF_CONVERSATION
java.lang.String getPromptText(ConversationContext context)
context - Context information about the conversation.boolean blocksForInput(ConversationContext context)
context - Context information about the conversation.Conversation will wait for input before
     continuing.Prompt acceptInput(ConversationContext context, java.lang.String input)
context - Context information about the conversation.input - The input text from the user.Copyright © 2018. All rights reserved.