Java List from Array arrayToListWithUpperCase(String[] arrValues)

Here you can find the source of arrayToListWithUpperCase(String[] arrValues)

Description

Convenience method to return a String array as a CSV String.

License

Apache License

Parameter

Parameter Description
arrValues array to display. Elements may be of any type (toString will be called on each element).

Declaration

public static List arrayToListWithUpperCase(String[] arrValues) 

Method Source Code


//package com.java2s;
/*/*w w w .j ava  2 s .c  o  m*/
 * Copyright 2002-2006 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.ArrayList;

import java.util.List;

public class Main {
    /**
     * Convenience method to return a String array as a CSV String. E.g. useful for
     * <code>toString()</code> implementations.
     * 
     * @param arrValues
     *            array to display. Elements may be of any type (toString will be called on each
     *            element).
     */
    public static List arrayToListWithUpperCase(String[] arrValues) {
        List values = null;

        if (arrValues != null) {
            values = new ArrayList();
            int size = arrValues.length;
            for (int i = 0; i < size; i++) {
                values.add(arrValues[i] != null ? arrValues[i].toUpperCase() : null);
            }
        }
        return values;
    }
}

Related

  1. arrayToList(T[] array)
  2. arrayToList(T[] array)
  3. arrayToList(T[] array)
  4. arrayToList(T[] obj, List newList)
  5. arrayToList(T[] source)
  6. arrayToString(List arr)
  7. arrayToStringList(Object array)
  8. asList()
  9. asList(boolean[] array)