Package | Description |
---|---|
com.amazon.ask.model.interfaces.alexa.presentation.apl |
Modifier and Type | Class and Description |
---|---|
class |
AnimateItemCommand
Runs a fixed-duration animation sequence on one or more properties of a single component.
|
class |
AutoPageCommand
Automatically progress through a series of pages displayed in a Pager component.
|
class |
ClearFocusCommand
Removes focus from the component that is currently in focus.
|
class |
ControlMediaCommand
Control a media player to play, pause, change tracks, or perform some other common action.
|
class |
FinishCommand
The finish command closes the current APL document and exits.
|
class |
GoBackCommand
GoBack command POJO for the backstack APL extension.
|
class |
HideOverlayCommand
HideOverlay Command used by television shopping skill.
|
class |
IdleCommand
The idle command does nothing.
|
class |
OpenUrlCommand
Opens a url with web browser or other application on the device.
|
class |
ParallelCommand
Execute a series of commands in parallel.
|
class |
PlayMediaCommand
Plays media on a media player (currently only a Video player; audio may be added in the future).
|
class |
ReinflateCommand
The reinflate command reinflates the current document with updated configuration properties.
|
class |
ScrollCommand
Scroll a ScrollView or Sequence forward or backward by a number of pages.
|
class |
ScrollToComponentCommand
Scroll forward or backward through a ScrollView or Sequence to ensure that a particular component is in view.
|
class |
ScrollToIndexCommand
Scroll forward or backward through a ScrollView or Sequence to ensure that a particular child component is in view.
|
class |
SelectCommand
Select a single command from an array of commands and data.
|
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 |
SetFocusCommand
Changes the actionable component that is in focus.
|
class |
SetPageCommand
Change the page displayed in a Pager component.
|
class |
SetStateCommand
The SetState command changes one of the component’s state settings.
|
class |
SetValueCommand
Change a dynamic property of a component without redrawing the screen.
|
class |
ShowOverlayCommand
ShowOverlay Command used by television shopping skill.
|
class |
SpeakItemCommand
Reads the contents of a single item on the screen.
|
class |
SpeakListCommand
Read the contents of a range of items inside a common container.
|
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> |
SelectCommand.getCommands()
An ordered list of commands to select from.
|
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.
|
List<Command> |
OpenUrlCommand.getOnFail()
Commands to execute if the URL fails to open
|
List<Command> |
SelectCommand.getOtherwise()
Commands to execute if nothing else runs.
|
Modifier and Type | Method and Description |
---|---|
SequentialCommand.Builder |
SequentialCommand.Builder.addCatchItem(Command _catchItem) |
SelectCommand.Builder |
SelectCommand.Builder.addCommandsItem(Command commandsItem) |
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) |
OpenUrlCommand.Builder |
OpenUrlCommand.Builder.addOnFailItem(Command onFailItem) |
SelectCommand.Builder |
SelectCommand.Builder.addOtherwiseItem(Command otherwiseItem) |
Modifier and Type | Method and Description |
---|---|
SequentialCommand.Builder |
SequentialCommand.Builder.withCatch(List<Command> _catch) |
SelectCommand.Builder |
SelectCommand.Builder.withCommands(List<Command> commands) |
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) |
OpenUrlCommand.Builder |
OpenUrlCommand.Builder.withOnFail(List<Command> onFail) |
SelectCommand.Builder |
SelectCommand.Builder.withOtherwise(List<Command> otherwise) |
Copyright © 2023. All rights reserved.