public enum ConfirmationStatus extends Enum<ConfirmationStatus>
ConfirmIntentDirective, or by indicating
in the skill's configured dialog that the intent requires confirmation.
Slots can be confirmed or denied using ConfirmSlotDirective,
or by indicating in the skill's configured dialog that the intent requires confirmation.| Modifier and Type | Method and Description |
|---|---|
static ConfirmationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfirmationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfirmationStatus NONE
public static final ConfirmationStatus CONFIRMED
public static final ConfirmationStatus DENIED
public static ConfirmationStatus[] values()
for (ConfirmationStatus c : ConfirmationStatus.values()) System.out.println(c);
public static ConfirmationStatus 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.