(Collection<? extends T> c)
| 17 | private static final long serialVersionUID = -8728381865616791954L; |
| 18 | |
| 19 | public SortedArrayList(Collection<? extends T> c) |
| 20 | { |
| 21 | super(c); |
| 22 | Collections.sort(this); |
| 23 | } |
| 24 | |
| 25 | public SortedArrayList(int initialCapacity) |
| 26 | { |