java.lang.Object
org.tquadrat.foundation.config.internal.Commons

@UtilityClass @ClassVersion(sourceVersion="$Id: Commons.java 1061 2023-09-25 16:32:43Z tquadrat $") @API(status=STABLE, since="0.1.0") @UseAdditionalTexts public final class Commons extends Object
The internal tools for the configuration module.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: Commons.java 1061 2023-09-25 16:32:43Z tquadrat $
Since:
0.1.0
UML Diagram
UML Diagram for "org.tquadrat.foundation.config.internal.Commons"

UML Diagram for "org.tquadrat.foundation.config.internal.Commons"

UML Diagram for "org.tquadrat.foundation.config.internal.Commons"
  • Field Details

  • Constructor Details

    • Commons

      private Commons()
      No instance allowed for this class!
  • Method Details

    • createException

      public static final CmdLineException createException(Class<? extends StringConverter> stringConverterClass, Throwable cause, String value)
      Creates an instance of CmdLineException based on the given arguments.
      Parameters:
      stringConverterClass - The class of the StringConverter implementation.
      cause - The causing Exception.
      value - The problematic value.
      Returns:
      The instance of CmdLineException.
    • retrieveMessage

      public static final String retrieveMessage(int key, boolean addKey, Object... args)

      Retrieves the message with the given key from the resource bundle and applies the given arguments to it.

      If the resource bundle does not contain a message for the given key, the key itself will be returned, appended with the arguments.

      Parameters:
      key - The key for the message.
      addKey - The recommended value is true; this means that the message will be prefixed with the generated message key.
      args - The arguments for the message.
      Returns:
      The text.
      See Also:
    • retrieveText

      public static final String retrieveText(String key, Object... args)

      Retrieves the text with the given key from the resource bundle and applies the given arguments to it.

      If the resource bundle does not contain a text for the given key, the key itself will be returned, appended with the arguments.

      Parameters:
      key - The key for the text.
      args - The arguments for the text.
      Returns:
      The text.
      See Also: