Uses of Class
readycli.CLI

  • Uses of CLI in readycli

    Methods in readycli that return CLI 
    Modifier and Type Method Description
    CLI CLI.addCommand​(java.lang.String name, Command command)
    Adds a command to the CLI.
    static CLI CLI.create()
    Creates a new CLI object with a null application title and a null command prompt.
    static CLI CLI.create​(java.lang.String title)
    Creates a new CLI object with a null application title and a null command prompt.
    static CLI CLI.create​(java.lang.String title, java.lang.String commandPrompt)
    Creates a new CLI object with the given application title and command prompt.
    CLI CLI.removeCommand​(java.lang.String name)
    Removes a command to the CLI.
    CLI CLI.setCommandPrompt​(java.lang.String commandPrompt)
    Sets a new command prompt to show just before the CLI starts to listen for the next command.
    CLI CLI.setTitle​(java.lang.String title)
    Sets the CLI title (e.g. the application name and the version).