Java Array to List ToList(final Object[] array)

Here you can find the source of ToList(final Object[] array)

Description

To List

License

Open Source License

Declaration

public static List ToList(final Object[] array) 

Method Source Code

//package com.java2s;
/*/* www .j av a 2s . com*/
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;

import java.util.List;

public class Main {
    public static List ToList(final Collection collection) {
        return new ArrayList(collection);
    }

    public static List ToList(final Object[] array) {
        return Arrays.asList(array);
    }
}

Related

  1. toList(final double[] array)
  2. toList(final E[] array)
  3. toList(final float[] array)
  4. toList(final int[] array)
  5. toList(final int[] array)
  6. toList(final Object[] objects)
  7. toList(final T... objects)
  8. toList(final T[] array)
  9. toList(final T[] array)