Java List Create createList(Collection collection)

Here you can find the source of createList(Collection collection)

Description

create List

License

Apache License

Declaration

final static public List createList(Collection collection) 

Method Source Code

//package com.java2s;
/**//from  w ww.j  av  a  2  s. c  o  m
 * 
 * Copyright 2008 - 2009
 * 
 * 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.
 * 
 * @project loonframework
 * @author chenpeng
 * @email?ceponline@yahoo.com.cn
 * @version 0.1.1
 */

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

import java.util.List;

public class Main {
    final static public int INITIAL_CAPACITY = 10;

    final static public List createList(Collection collection) {
        return new ArrayList(collection);
    }

    final static public List createList() {
        return createList(INITIAL_CAPACITY);
    }

    final static public List createList(int size) {
        return size > 0 ? new ArrayList(size) : createList();
    }
}

Related

  1. createList( Iterator iterator )
  2. createList()
  3. createList(Class elementClass)
  4. createList(Class itemClazz, T... items)
  5. createList(Collection collection)
  6. createList(Collection collection)
  7. createList(E initialElement)
  8. createList(final T object)
  9. createList(final T... elements)