Class AtomicReferenceArrayListAdapter<T>

java.lang.Object
java.util.AbstractCollection<T>
java.util.AbstractList<T>
com.googlecode.concurrenttrees.radix.node.util.AtomicReferenceArrayListAdapter<T>
All Implemented Interfaces:
Serializable, Iterable<T>, Collection<T>, List<T>, SequencedCollection<T>

public class AtomicReferenceArrayListAdapter<T> extends AbstractList<T> implements Serializable
Wraps an AtomicReferenceArray to implement read-only methods of the List interface.

This enables binary search of an AtomicReferenceArray, using Collections.binarySearch(java.util.List, Object).

See Also: