Lines Matching defs:array

63      * @param tokens an array objects to be joined. Strings will be formed from
120 // Optimization: avoid creating a temporary array for characters that are
129 @Nonnull final String[] array) {
130 for (final String element : array) {
174 * Remove duplicates from an array of strings.
177 * in the array, removing the subsequent ones.
240 * Converts a range of a string to an array of code points.
244 * @return a new array of code points. At most endIndex - startIndex, but possibly less.
261 * Copies the codepoints in a CharSequence to an int array.
263 * This method assumes there is enough space in the array to store the code points. The size
265 * method. If the int array is too small, an ArrayIndexOutOfBoundsException will be thrown.
271 * @param destination the int array.
301 * Construct a String from a code point array
303 * @param codePoints a code point array that is null terminated when its logical length is
304 * shorter than the array length.
305 * @return a string constructed from the code point array.
567 * Convert hex string to byte array. The string length must be an even number.
644 public final String join(@Nullable final E[] array) {
645 return joinStringArray(toStringArray(array), null /* delimiter */);
649 public final String join(@Nullable final E[] array, @Nullable final String delimiter) {
650 return joinStringArray(toStringArray(array), delimiter);
654 protected String[] toStringArray(@Nullable final E[] array) {
655 if (array == null) {
658 final String[] stringArray = new String[array.length];
659 for (int index = 0; index < array.length; index++) {
660 stringArray[index] = stringize(array[index]);