Java Array Convert to arrayToUpper(String[] values)

Here you can find the source of arrayToUpper(String[] values)

Description

array To Upper

License

Open Source License

Declaration

public static String[] arrayToUpper(String[] values) 

Method Source Code

//package com.java2s;

public class Main {
    public static String[] arrayToUpper(String[] values) {
        int count = values.length;
        String[] results = new String[count];

        for (int index = 0; index < count; index++) {
            results[index] = values[index].toUpperCase();
        }/*from  www.j  a v a2 s.co  m*/

        return results;
    }
}

Related

  1. arrayToQueryString(String key, Object[] arr)
  2. arrayToSeparatedString(final String[] strings, final String separator)
  3. arrayToSqlInList(String... values)
  4. arrayToSv(String as[], String s)
  5. arrayToSVMLightString(int[] array)
  6. arrayWithoutFirstsElement(final String[] array, final int elementsToRemove)
  7. convertArray(byte[] a)
  8. convertArray(Object columns[], int minLength)
  9. convertArray(String[] str)