Uses of Interface
api.advanced.ExecutableCommands
-
Packages that use ExecutableCommands Package Description api.advanced This package contains more advanced features which combine multiple commands into one and allow to save them in an object. -
-
Uses of ExecutableCommands in api.advanced
Classes in api.advanced that implement ExecutableCommands Modifier and Type Class Description classBundleA powerful tool to combine instructions to multiple servos and execute them in parallelclassCollectionA tool to combine multipleExecutableCommandsinto one object, which runs all contained commands in parallel.classSequenceA tool to combine multipleExecutableCommandsinto one object, which runs one command after another.Methods in api.advanced that return ExecutableCommands Modifier and Type Method Description ExecutableCommandsCollection. getCommand(int index)Methods in api.advanced that return types with arguments of type ExecutableCommands Modifier and Type Method Description java.util.ArrayList<ExecutableCommands>Collection. getCommands()Methods in api.advanced with parameters of type ExecutableCommands Modifier and Type Method Description voidCollection. add(ExecutableCommands command)Add anExecutableCommandto the commands contained in thisCollectionvoidCollection. remove(ExecutableCommands command)Remove the first occurrence of a command equal to the one provided as an argument from the collection
This method is an alias ofcommands.remove(command)Constructors in api.advanced with parameters of type ExecutableCommands Constructor Description Collection(ExecutableCommands[] commands)Create a collection and initialize it with theExecutableCommandscontained in the arraySequence(ExecutableCommands[] commands)Create a sequence and initialize it with theExecutableCommandscontained in the array
-