Class Java

    • Constructor Detail

      • Java

        private Java()
    • Method Detail

      • join

        public static java.lang.String join​(java.lang.Object[] a,
                                            java.lang.String separator)
        Returns:
        null iff a == null, or "" iff a.length == 0, or the elements of a, converted to strings concatenated and separated with the separator
      • join

        public static java.lang.String join​(java.lang.Object[] a,
                                            java.lang.String separator,
                                            int off,
                                            int len)
        Returns:
        null iff a == null, or "" iff off >= len, or element off ... len-1 of a, converted to strings concatenated and separated with the separator