Class CollectionFactory
Mainly for internal use within the framework.
- Since:
- 1.1.1
- Author:
- Juergen Hoeller, Arjen Poutsma, Oliver Gierke, Sam Brannen
-
Method Summary
Modifier and TypeMethodDescriptionstatic <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<?> collectionType, int capacity) Create the most appropriate collection for the given collection type.static <E> Collection<E>
createCollection
(Class<?> collectionType, Class<?> elementType, int capacity) Create the most appropriate collection for the given collection type.static <K,
V> Map<K, V> Create the most appropriate map for the given map type.static <K,
V> Map<K, V> Create the most appropriate map for the given map type.static Properties
createSortedProperties
(boolean omitComments) Create a variant ofProperties
that sorts properties alphanumerically based on their keys.static Properties
createSortedProperties
(Properties properties, boolean omitComments) Create a variant ofProperties
that sorts properties alphanumerically based on their keys.static Properties
Create a variant ofProperties
that automatically adapts non-String values to String representations inProperties.getProperty(java.lang.String)
.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.
-
Method Details
-
isApproximableCollectionType
Determine whether the given collection type is an approximable type, i.e. a type thatcreateApproximateCollection(java.lang.Object, int)
can approximate.- Parameters:
collectionType
- the collection type to check- Returns:
true
if the type is approximable
-
createApproximateCollection
public static <E> Collection<E> createApproximateCollection(@Nullable Object collection, int capacity) Create the most approximate collection for the given collection.Warning: Since the parameterized type
E
is not bound to the type of elements contained in the suppliedcollection
, type safety cannot be guaranteed if the suppliedcollection
is anEnumSet
. In such scenarios, the caller is responsible for ensuring that the element type for the suppliedcollection
is an enum type matching typeE
. As an alternative, the caller may wish to treat the return value as a raw collection or collection ofObject
.- Parameters:
collection
- the original collection object, potentiallynull
capacity
- the initial capacity- Returns:
- a new, empty collection instance
- See Also:
-
createCollection
Create the most appropriate collection for the given collection type.Delegates to
createCollection(Class, Class, int)
with anull
element type.- Parameters:
collectionType
- the desired type of the target collection (nevernull
)capacity
- the initial capacity- Returns:
- a new collection instance
- Throws:
IllegalArgumentException
- if the suppliedcollectionType
isnull
or of typeEnumSet
-
createCollection
public static <E> Collection<E> createCollection(Class<?> collectionType, @Nullable Class<?> elementType, int capacity) Create the most appropriate collection for the given collection type.Warning: Since the parameterized type
E
is not bound to the suppliedelementType
, type safety cannot be guaranteed if the desiredcollectionType
isEnumSet
. In such scenarios, the caller is responsible for ensuring that the suppliedelementType
is an enum type matching typeE
. As an alternative, the caller may wish to treat the return value as a raw collection or collection ofObject
.- Parameters:
collectionType
- the desired type of the target collection (nevernull
)elementType
- the collection's element type, ornull
if unknown (note: only relevant forEnumSet
creation)capacity
- the initial capacity- Returns:
- a new collection instance
- Throws:
IllegalArgumentException
- if the suppliedcollectionType
isnull
; or if the desiredcollectionType
isEnumSet
and the suppliedelementType
is not a subtype ofEnum
- Since:
- 4.1.3
- See Also:
-
isApproximableMapType
Determine whether the given map type is an approximable type, i.e. a type thatcreateApproximateMap(java.lang.Object, int)
can approximate.- Parameters:
mapType
- the map type to check- Returns:
true
if the type is approximable
-
createApproximateMap
Create the most approximate map for the given map.Warning: Since the parameterized type
K
is not bound to the type of keys contained in the suppliedmap
, type safety cannot be guaranteed if the suppliedmap
is anEnumMap
. In such scenarios, the caller is responsible for ensuring that the key type in the suppliedmap
is an enum type matching typeK
. As an alternative, the caller may wish to treat the return value as a raw map or map keyed byObject
.- Parameters:
map
- the original map object, potentiallynull
capacity
- the initial capacity- Returns:
- a new, empty map instance
- See Also:
-
createMap
Create the most appropriate map for the given map type.Delegates to
createMap(Class, Class, int)
with anull
key type.- Parameters:
mapType
- the desired type of the target mapcapacity
- the initial capacity- Returns:
- a new map instance
- Throws:
IllegalArgumentException
- if the suppliedmapType
isnull
or of typeEnumMap
-
createMap
Create the most appropriate map for the given map type.Warning: Since the parameterized type
K
is not bound to the suppliedkeyType
, type safety cannot be guaranteed if the desiredmapType
isEnumMap
. In such scenarios, the caller is responsible for ensuring that thekeyType
is an enum type matching typeK
. As an alternative, the caller may wish to treat the return value as a raw map or map keyed byObject
. Similarly, type safety cannot be enforced if the desiredmapType
isMultiValueMap
.- Parameters:
mapType
- the desired type of the target map (nevernull
)keyType
- the map's key type, ornull
if unknown (note: only relevant forEnumMap
creation)capacity
- the initial capacity- Returns:
- a new map instance
- Throws:
IllegalArgumentException
- if the suppliedmapType
isnull
; or if the desiredmapType
isEnumMap
and the suppliedkeyType
is not a subtype ofEnum
- Since:
- 4.1.3
- See Also:
-
createStringAdaptingProperties
Create a variant ofProperties
that automatically adapts non-String values to String representations inProperties.getProperty(java.lang.String)
.In addition, the returned
Properties
instance sorts properties alphanumerically based on their keys.- Returns:
- a new
Properties
instance - Since:
- 4.3.4
- See Also:
-
createSortedProperties
Create a variant ofProperties
that sorts properties alphanumerically based on their keys.This can be useful when storing the
Properties
instance in a properties file, since it allows such files to be generated in a repeatable manner with consistent ordering of properties. Comments in generated properties files can also be optionally omitted.- Parameters:
omitComments
-true
if comments should be omitted when storing properties in a file- Returns:
- a new
Properties
instance - Since:
- 5.2
- See Also:
-
createSortedProperties
Create a variant ofProperties
that sorts properties alphanumerically based on their keys.This can be useful when storing the
Properties
instance in a properties file, since it allows such files to be generated in a repeatable manner with consistent ordering of properties. Comments in generated properties files can also be optionally omitted.The returned
Properties
instance will be populated with properties from the suppliedproperties
object, but default properties from the suppliedproperties
object will not be copied.- Parameters:
properties
- theProperties
object from which to copy the initial propertiesomitComments
-true
if comments should be omitted when storing properties in a file- Returns:
- a new
Properties
instance - Since:
- 5.2
- See Also:
-