Package 

Class CommandStore.StoredCommand

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      Class<out BaseCommand> getCommandClass() Returns the class object for this command's implementation.
      String getName() Returns the name of this command (what the player would enter to use it).
      String getSyntax() Returns the syntax for this command.
      String getHelp() Returns the detailed usage instructions for this command.
      String getSource() Returns the complete file path of the CSV this command was loaded from (not the relative path).
      List<String> getTags() Returns all tags associated with this command.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • getName

         String getName()

        Returns the name of this command (what the player would enter to use it).

      • getHelp

         String getHelp()

        Returns the detailed usage instructions for this command.

      • getSource

         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.