public static class CommandStore.StoredCommand
Contains detailed information on a loaded command.
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends org.lazywizard.console.BaseCommand> |
getCommandClass()
Returns the class object for this command's implementation.
|
java.lang.String |
getHelp()
Returns the detailed usage instructions for this command.
|
java.lang.String |
getName()
Returns the name of this command (what the player would enter to use it).
|
java.lang.String |
getSource()
Returns the complete file path of the CSV this command was loaded from (not the relative path). Useful for determining which mod added this command.
|
java.lang.String |
getSyntax()
Returns the syntax for this command.
|
java.util.List<java.lang.String> |
getTags()
Returns all tags associated with this command.
|
public java.lang.Class<? extends org.lazywizard.console.BaseCommand> getCommandClass()
Returns the class object for this command's implementation.
public java.lang.String getName()
Returns the name of this command (what the player would enter to use it).
public java.lang.String getSyntax()
Returns the syntax for this command.
public java.lang.String getHelp()
Returns the detailed usage instructions for this command.
public java.util.List<java.lang.String> getTags()
Returns all tags associated with this command.
public java.lang.String getSource()
Returns the complete file path of the CSV this command was loaded from (not the relative path). Useful for determining which mod added this command.