Constructor ArrayList(int initialCapacity)
Member of: java.util.ArrayList
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 return new ArrayList(initialSize);
2 return new ArrayList(size);
3 private final List refs = new ArrayList(100); // List
4 List resources= new ArrayList(elements.size());
5 List resources= new ArrayList(elements.size());
6 private List _loaders = new ArrayList (5);
7 private final List todo = new ArrayList(5);
8 private List _vhosts=new ArrayList(2);
9 protected List valuesToWrite = new ArrayList(valuesPerWrite);
10 private List tableList = new ArrayList(100);
11 return new ArrayList(size);
12 private final List configuredPools = new ArrayList(3);
13 List attrs = new ArrayList(32);
14 private List mEntries = new ArrayList(10);
15 private List aliasList = new ArrayList(1);
16 list = new ArrayList(25);
17 mChunks = new ArrayList(100);
18 static List browserMatch = Collections.synchronizedList(new ArrayList(2));
19 private final Collection EMPTY_COLLECTION = new ArrayList(0);
20 ArrayList arraylist = new ArrayList(readMethods.size());
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.