static <E> IndirectSet<E> |
IndirectCollectionsFactory.createIndirectSet() |
Construct an empty IndirectSet with the default initial capacity (10)
and the default load factor (0.75).
|
static <E> IndirectSet<E> |
IndirectCollectionsFactory.createIndirectSet(int initialCapacity) |
Construct an empty IndirectSet with the specified initial capacity
and the default load factor (0.75).
|
static <E> IndirectSet<E> |
IndirectCollectionsFactory.createIndirectSet(Collection<? extends E> collection) |
Constructs an IndirectSet containing the elements of the specified
collection.
|
<E> IndirectSet<E> |
IndirectCollectionsFactory.IndirectCollectionsProvider.createIndirectSet(int initialCapacity,
float loadFactor) |
Construct an empty IndirectSet with the specified initial capacity
and the specified load factor.
|
<E> IndirectSet<E> |
IndirectCollectionsFactory.IndirectCollectionsProvider.createIndirectSet(Collection<? extends E> collection) |
Constructs an IndirectSet containing the elements of the specified
collection.
|