Class ArrayStorage<T>

  • Type Parameters:
    T - the type of stored elements
    All Implemented Interfaces:
    Cloneable, Iterable<T>, Collection<T>, List<T>, RandomAccess

    public final class ArrayStorage<T>
    extends AbstractList<T>
    implements RandomAccess, Cloneable
    A thin wrapper around a simple Object[] array. Mainly used (and useful) for heavily generic and array-based data storage. Extends/Implements some convenient classes/interfaces.