HashMap is to ConcurrentHashMap as ArrayList is to ?

In JDK 1.5, HashMap has a thread safe implementation, ConcurrentHashMap. As well, there is the corresponding interface ConcurrentMap. Does ArrayList have a thread safe implementation? If so, is there also a corresponding interface? I'm aware that I can use Collections.synchronizedList(new ArrayList<T>()) but was hoping there was something more along the lines of ConcurrentHashMap and ConcurrentMap. Thanks.

[423 byte] By [logicg8a] at [2007-11-27 9:17:27]
# 1
CopyOnWriteArrayList? It really depends on your use.
BigDaddyLoveHandlesa at 2007-7-12 22:07:55 > top of Java-index,Java Essentials,Java Programming...