public static enum IntentRequest.DialogState extends Enum<IntentRequest.DialogState>
| Enum Constant and Description |
|---|
COMPLETED
Indicates that all required slot values and confirmations have been provided, the dialog
is considered complete, and the skill can proceed to fulfilling the intent.
|
IN_PROGRESS
Indicates that a multi-turn dialog is in process and it is not the first turn.
|
STARTED
Indicates this is the first turn in a multi-turn dialog.
|
| Modifier and Type | Method and Description |
|---|---|
static IntentRequest.DialogState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntentRequest.DialogState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntentRequest.DialogState STARTED
public static final IntentRequest.DialogState IN_PROGRESS
DelegateDirective).public static final IntentRequest.DialogState COMPLETED
DialogDirective and update slot
values/confirmations as required.public static IntentRequest.DialogState[] values()
for (IntentRequest.DialogState c : IntentRequest.DialogState.values()) System.out.println(c);
public static IntentRequest.DialogState 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 © 2017. All rights reserved.