Enum Class StringUtils.Padding

java.lang.Object
java.lang.Enum<StringUtils.Padding>
org.tquadrat.foundation.util.StringUtils.Padding
All Implemented Interfaces:
Serializable, Comparable<StringUtils.Padding>, Constable
Enclosing class:
StringUtils

@ClassVersion(sourceVersion="$Id: StringUtils.java 1138 2024-06-03 22:46:54Z tquadrat $") @API(status=STABLE, since="0.0.5") public static enum StringUtils.Padding extends Enum<StringUtils.Padding>
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: StringUtils.java 1138 2024-06-03 22:46:54Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.util.StringUtils.Padding"

UML Diagram for "org.tquadrat.foundation.util.StringUtils.Padding"

UML Diagram for "org.tquadrat.foundation.util.StringUtils.Padding"
  • Enum Constant Details

  • Constructor Details

  • Method Details

    • values

      public static StringUtils.Padding[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static StringUtils.Padding valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • pad

      protected abstract String pad(CharSequence input, int padSize, char c)
      Pads the given input String.
      Parameters:
      input - The input String.
      padSize - The pad size.
      c - The pad character.
      Returns:
      The result String.
    • padding

      private static String padding(int repeat, char padChar) throws IndexOutOfBoundsException

      Returns padding using the specified pad character repeated to the given length.


      Padding.padding( 0, 'e' ) ⇒ ""
      Padding.padding( 3, 'e' ) ⇒ "eee"
      Padding.padding( -2, 'e' ) ⇒ IndexOutOfBoundsException
      Parameters:
      repeat - Number of times to repeat padChar; must be 0 or greater.
      padChar - Character to repeat.
      Returns:
      String with repeated padChar character, or the empty String if repeat is 0.
      Throws:
      IndexOutOfBoundsException - repeat is less than 0.
      See Also: