static <E> IndirectList<E> |
IndirectCollectionsFactory.createIndirectList() |
Construct an empty IndirectList with the default initial capacity (10)
and default capacity increment (0).
|
static <E> IndirectList<E> |
IndirectCollectionsFactory.createIndirectList(int initialCapacity) |
Construct an empty IndirectList with the specified initial capacity
and default capacity increment (0).
|
static <E> IndirectList<E> |
IndirectCollectionsFactory.createIndirectList(Collection<? extends E> collection) |
Construct an IndirectList containing the elements of the specified
collection, in the order they are returned by the collection's iterator.
|
<E> IndirectList<E> |
IndirectCollectionsFactory.IndirectCollectionsProvider.createIndirectList(int initialCapacity,
int capacityIncrement) |
Construct an empty IndirectList with the specified initial capacity
and capacity increment.
|
<E> IndirectList<E> |
IndirectCollectionsFactory.IndirectCollectionsProvider.createIndirectList(Collection<? extends E> collection) |
Constructs an IndirectList containing the elements of the specified
collection, in the order they are returned by the collection's iterator.
|