public static final class CommandStore.StoredCommand
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends 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).
|
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 BaseCommand> getCommandClass()
Class
of the BaseCommand
implementation
that will be instantiated when this command is run.
public java.lang.String getName()
public java.lang.String getSyntax()
public java.lang.String getHelp()
public java.util.List<java.lang.String> getTags()
public java.lang.String getSource()