Java Array to List newList(T... elements)

Here you can find the source of newList(T... elements)

Description

Creates a new ArrayList from the elements.

License

Apache License

Parameter

Parameter Description
T the element type
elements the elements

Return

the list

Declaration

public static <T> List<T> newList(T... elements) 

Method Source Code


//package com.java2s;
/*//www.  j a v a  2 s.  c  o  m
 * Copyright 2011-2014 David Karnok
 *
 * 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.Arrays;

import java.util.List;

public class Main {
    /**
     * Creates a new ArrayList from the elements.
     * @param <T> the element type
     * @param elements the elements
     * @return the list
     */
    public static <T> List<T> newList(T... elements) {
        return new ArrayList<T>(Arrays.asList(elements));
    }
}

Related

  1. fromArray(T[] objects)
  2. newList(final T... elements)
  3. newList(final T... elements)
  4. newList(int... sizes)
  5. newList(T... elements)
  6. newList(T... items)
  7. newList(T... list)
  8. newList(T... objects)
  9. newList(T... objs)