Java List from Array arrayToList(String[] arrValues)

Here you can find the source of arrayToList(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 arrayToList(String[] arrValues) 

Method Source Code


//package com.java2s;
/*/*w ww  . ja v a  2s .  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 arrayToList(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]);
            }
        }
        return values;
    }

    /**
     * Convenience method to populate a given list with the array values. 
     * 
     * @param arrValues
     *            array to display. Elements may be of any type (toString will be called on each
     *            element).
     * @param values The list to populate            
     */
    public static void arrayToList(String[] arrValues, List values, boolean toLoweCase) {

        if (arrValues != null && values != null) {
            int size = arrValues.length;
            for (int i = 0; i < size; i++) {
                String val = arrValues[i];
                if (toLoweCase) {
                    val = val.toLowerCase();
                }
                values.add(val);
            }
        }
    }
}

Related

  1. arrayToList(Object data)
  2. arrayToList(Object data[])
  3. arrayToList(Object[] arr)
  4. arrayToList(Object[] hyCycles)
  5. arrayToList(String[] array, String... defaults)
  6. ArrayToList(String[] input)
  7. arrayToList(String[] str)
  8. arrayToList(T array[])
  9. arrayToList(T[] array)