Package | Description |
---|---|
com.amazon.ask.model.interfaces.alexa.presentation.aplt |
Modifier and Type | Class and Description |
---|---|
class |
AutoPageCommand
Automatically progress through a series of pages displayed in a Pager component.
|
class |
IdleCommand
The idle command does nothing.
|
class |
ParallelCommand
Execute a series of commands in parallel.
|
class |
ScrollCommand
Scroll a ScrollView or Sequence forward or backward by a number of pages.
|
class |
SendEventCommand
The SendEvent command allows the APL author to generate and send an event to Alexa.
|
class |
SequentialCommand
A sequential command executes a series of commands in order.
|
class |
SetPageCommand
Change the page displayed in a Pager component.
|
class |
SetValueCommand
Change a dynamic property of a component without redrawing the screen.
|
Modifier and Type | Method and Description |
---|---|
List<Command> |
SequentialCommand.getCatch()
An ordered list of commands to execute if this sequence is prematurely terminated.
|
List<Command> |
ExecuteCommandsDirective.getCommands()
List of Command instances
|
List<Command> |
SequentialCommand.getCommands()
An array of commands to execute.
|
List<Command> |
ParallelCommand.getCommands()
An un-ordered array of commands to execute in parallel.
|
List<Command> |
SequentialCommand.getFinally()
An ordered list of commands to execute after the normal commands and the catch commands.
|
Modifier and Type | Method and Description |
---|---|
SequentialCommand.Builder |
SequentialCommand.Builder.addCatchItem(Command _catchItem) |
ExecuteCommandsDirective.Builder |
ExecuteCommandsDirective.Builder.addCommandsItem(Command commandsItem) |
SequentialCommand.Builder |
SequentialCommand.Builder.addCommandsItem(Command commandsItem) |
ParallelCommand.Builder |
ParallelCommand.Builder.addCommandsItem(Command commandsItem) |
SequentialCommand.Builder |
SequentialCommand.Builder.addFinallyItem(Command _finallyItem) |
Modifier and Type | Method and Description |
---|---|
SequentialCommand.Builder |
SequentialCommand.Builder.withCatch(List<Command> _catch) |
ExecuteCommandsDirective.Builder |
ExecuteCommandsDirective.Builder.withCommands(List<Command> commands) |
SequentialCommand.Builder |
SequentialCommand.Builder.withCommands(List<Command> commands) |
ParallelCommand.Builder |
ParallelCommand.Builder.withCommands(List<Command> commands) |
SequentialCommand.Builder |
SequentialCommand.Builder.withFinally(List<Command> _finally) |
Copyright © 2023. All rights reserved.