Class Upgrade1to2Command
- java.lang.Object
-
- software.amazon.smithy.cli.commands.Upgrade1to2Command
-
- All Implemented Interfaces:
Command
public final class Upgrade1to2Command extends java.lang.Object
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface software.amazon.smithy.cli.Command
Command.Env
-
-
Constructor Summary
Constructors Constructor Description Upgrade1to2Command(java.lang.String parentCommandName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.util.List<ArgumentReceiver>
createArgumentReceivers()
Creates argument receivers for the command.int
execute(Arguments arguments, Command.Env env)
Executes the command using the provided arguments.java.lang.String
getName()
Gets the name of the command.java.lang.String
getSummary()
Gets a short summary of the command that's shown in the main help.void
printHelp(Arguments arguments, CliPrinter printer)
Prints help output.protected int
run(Arguments arguments, Command.Env env, java.util.List<java.lang.String> models)
Run the non-help command after all arguments have been parsed.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.smithy.cli.Command
getDocumentation
-
-
-
-
Method Detail
-
createArgumentReceivers
protected java.util.List<ArgumentReceiver> createArgumentReceivers()
Creates argument receivers for the command.- Returns:
- Returns the parsed positional arguments.
-
getName
public java.lang.String getName()
Description copied from interface:Command
Gets the name of the command.The returned name should contain no spaces or special characters.
- Returns:
- Returns the command name.
-
getSummary
public java.lang.String getSummary()
Description copied from interface:Command
Gets a short summary of the command that's shown in the main help.- Returns:
- Returns the short help description.
-
run
protected int run(Arguments arguments, Command.Env env, java.util.List<java.lang.String> models)
Run the non-help command after all arguments have been parsed.- Parameters:
arguments
- Arguments to evaluate.env
- CLI environment settings.models
- Parsed positional arguments.- Returns:
- Returns the exit code.
-
execute
public final int execute(Arguments arguments, Command.Env env)
Description copied from interface:Command
Executes the command using the provided arguments.
-
printHelp
public void printHelp(Arguments arguments, CliPrinter printer)
Description copied from interface:Command
Prints help output.
-
-