com.azalient.api.a.store
Interface IList<T>

All Superinterfaces:
Iterable<T>
All Known Implementing Classes:
ListAdapter, ListAdapterIT

public interface IList<T>
extends Iterable<T>

A generic list interface used to convert between ArrayList and other standard collection objects and IStore objects


Method Summary
 T get(int index)
          The index'th element in the list
 int size()
          The number of elements in the list
 T[] toArray(T[] ta)
          Convert the list to an array.
 
Methods inherited from interface java.lang.Iterable
iterator
 

Method Detail

size

int size()
The number of elements in the list


get

T get(int index)
The index'th element in the list


toArray

T[] toArray(T[] ta)
Convert the list to an array. The array passed in cannot be null, it must be of the correct type, but it can be of type zero.