Class Strings


  • public class Strings
    extends java.lang.Object
    String utilities
    • Constructor Summary

      Constructors 
      Constructor Description
      Strings()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.lang.String mkString​(java.util.List<java.lang.String> strings, java.lang.String sep)
      Make a string by joining them using the 'sep' string.
      • Methods inherited from class java.lang.Object

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

      • Strings

        public Strings()
    • Method Detail

      • mkString

        public static java.lang.String mkString​(java.util.List<java.lang.String> strings,
                                                java.lang.String sep)
        Make a string by joining them using the 'sep' string.
        Parameters:
        strings - The strings to join.
        sep - The separator to use.
        Returns:
        The joined string.