public interface CollectionFactoryIF
Modifier and Type | Method and Description |
---|---|
<T> List<T> |
makeLargeList()
INTERNAL: Creates a list that is expected to contain a large
number of objects.
|
<V,K> Map<V,K> |
makeLargeMap()
INTERNAL: Creates a map that is expected to contain a large
number of objects.
|
<T> Set<T> |
makeLargeSet()
INTERNAL: Creates a set that is expected to contain a large
number of objects.
|
<T> List<T> |
makeSmallList()
INTERNAL: Creates a list that is expected to contain a small
number of objects.
|
<V,K> Map<V,K> |
makeSmallMap()
INTERNAL: Creates a map that is expected to contain a small
number of objects.
|
<T> Set<T> |
makeSmallSet()
INTERNAL: Creates a set that is expected to contain a small
number of objects.
|
<T> Set<T> makeSmallSet()
<T> Set<T> makeLargeSet()
<V,K> Map<V,K> makeSmallMap()
<V,K> Map<V,K> makeLargeMap()
<T> List<T> makeSmallList()
<T> List<T> makeLargeList()