@AutoService(value=Command.class) public class Crossfold extends Object implements Command
Pack ratings data into a rating file.
| Constructor and Description |
|---|
Crossfold() |
| Modifier and Type | Method and Description |
|---|---|
void |
configureArguments(net.sourceforge.argparse4j.inf.ArgumentParser parser)
Configure the argument parser for this command.
|
void |
execute(net.sourceforge.argparse4j.inf.Namespace options)
Execute the command.
|
static String |
getDelimiter(net.sourceforge.argparse4j.inf.Namespace opts) |
String |
getHelp()
Get the command’s help.
|
String |
getName()
Get the name of the command.
|
public String getName()
CommandGet the name of the command.
public static String getDelimiter(net.sourceforge.argparse4j.inf.Namespace opts)
public void execute(net.sourceforge.argparse4j.inf.Namespace options)
throws IOException
CommandExecute the command.
execute in interface Commandoptions - The command-line options.IOExceptionpublic void configureArguments(net.sourceforge.argparse4j.inf.ArgumentParser parser)
CommandConfigure the argument parser for this command.
configureArguments in interface Commandparser - The argument parser into which the arguments should be configured. This will already be a subparser, the command is not responsible for creating that.