public abstract class CollectionFactory extends Object
The goal of this class is to avoid runtime dependencies on a specific Java version, while nevertheless using the best collection implementation that is available at runtime.
| Constructor and Description |
|---|
CollectionFactory() |
| Modifier and Type | Method and Description |
|---|---|
static <E> Collection<E> |
createApproximateCollection(Object collection,
int capacity)
Create the most approximate collection for the given collection.
|
static <K,V> Map<K,V> |
createApproximateMap(Object map,
int capacity)
Create the most approximate map for the given map.
|
static <E> Collection<E> |
createCollection(Class<?> collectionClass,
Class<?> elementType,
int capacity)
Create the most appropriate collection for the given collection type.
|
static <E> Collection<E> |
createCollection(Class<?> collectionClass,
int capacity)
Create the most appropriate collection for the given collection type.
|
static <K,V> Map<K,V> |
createMap(Class<?> mapClass,
Class<?> keyType,
int capacity)
Create the most approximate map for the given map.
|
static <K,V> Map<K,V> |
createMap(Class<?> mapClass,
int capacity)
Create the most approximate map for the given map.
|
static boolean |
isApproximableCollectionType(Class<?> collectionType)
Determine whether the given collection type is an approximable type,
i.e.
|
static boolean |
isApproximableMapType(Class<?> mapType)
Determine whether the given map type is an approximable type,
i.e.
|
public static boolean isApproximableCollectionType(Class<?> collectionType)
createApproximateCollection(java.lang.Object, int) can approximate.collectionType - the collection type to checktrue if the type is approximable,
false if it is notpublic static <E> Collection<E> createApproximateCollection(Object collection, int capacity)
collection - the original Collection objectcapacity - the initial capacityLinkedHashSet,
TreeSet,
EnumSet,
ArrayList,
LinkedListpublic static <E> Collection<E> createCollection(Class<?> collectionClass, int capacity)
Delegates to createCollection(Class, Class, int) with a
null element type.
collectionClass - the desired type of the target Collectioncapacity - the initial capacitypublic static <E> Collection<E> createCollection(Class<?> collectionClass, Class<?> elementType, int capacity)
collectionClass - the desired type of the target CollectionelementType - the collection's element type, or null if not known
(note: only relevant for EnumSet creation)capacity - the initial capacityLinkedHashSet,
TreeSet,
EnumSet,
ArrayListpublic static boolean isApproximableMapType(Class<?> mapType)
createApproximateMap(java.lang.Object, int) can approximate.mapType - the map type to checktrue if the type is approximable,
false if it is notpublic static <K,V> Map<K,V> createApproximateMap(Object map, int capacity)
map - the original Map objectcapacity - the initial capacityTreeMap,
LinkedHashMappublic static <K,V> Map<K,V> createMap(Class<?> mapClass, int capacity)
Delegates to createMap(Class, Class, int) with a
null key type.
mapClass - the desired type of the target Mapcapacity - the initial capacitypublic static <K,V> Map<K,V> createMap(Class<?> mapClass, Class<?> keyType, int capacity)
mapClass - the desired type of the target MapkeyType - the map's key type, or null if not known
(note: only relevant for EnumMap creation)capacity - the initial capacityLinkedHashMap,
TreeMap,
EnumMap,
LinkedMultiValueMap