Java ArrayList Create getArrayList()

Here you can find the source of getArrayList()

Description

get Array List

License

Open Source License

Declaration

@SuppressWarnings("rawtypes")
    static public ArrayList getArrayList() 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.util.ArrayList;

public class Main {
    @SuppressWarnings("rawtypes")
    static public ArrayList getArrayList() {
        return new ArrayList();
    }/*from w  ww . j  av  a 2  s .  c o m*/
}

Related

  1. createArrayList(String[] a)
  2. createArrayList(T... objects)
  3. createArrayListFilledIncrement(int count)
  4. createArrayListOfArrayList(int size)
  5. getArrayList()
  6. getArrayList()
  7. getArrayList(final Object o, final Class clazz)
  8. getArrayList(List list)
  9. getArrayList(Map map, Object obj)