Exemplo n.º 1
0
 /**
  * Pad trailing spaces so that it has at least the specified length
  *
  * @param string - the string to parse
  * @param length - minimum length of the string
  * @return the padded string
  */
 public static String pad(String string, int length) {
   return Toolbox.pad(string, length);
 }