Class 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[][] aa,
                                            java.lang.String innerSeparator,
                                            java.lang.String outerSeparator)
        Returns:
        null iff aa == null, or "" iff aa.length == 0, or the elements of aa, converted to strings concatenated and separated with the outerSeparator
      • join

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

        public static Java.AccessModifier[] accessModifiers​(Location location,
                                                            java.lang.String... keywords)
        Returns:
        An array of Java.Modifiers, parsed from a sequence of access modifier keywords