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.

