Interface CommandRegistration.HelpOptionInfo

All Known Implementing Classes:
CommandRegistration.HelpOptionInfo.DefaultHelpOptionInfo
Enclosing interface:
CommandRegistration

public static interface CommandRegistration.HelpOptionInfo
  • Method Details

    • isEnabled

      boolean isEnabled()
      Gets whether help options are enabled.
      Returns:
      whether help options are enabled
    • getLongNames

      String[] getLongNames()
      Gets long names options for help.
      Returns:
      long names options for help
    • getShortNames

      Character[] getShortNames()
      Gets short names options for help.
      Returns:
      short names options for help
    • getCommand

      String getCommand()
      Gets command for help.
      Returns:
      command for help
    • of

    • of

      static CommandRegistration.HelpOptionInfo of(boolean enabled, String[] longNames, Character[] shortNames, String command)