Java org.springframework.core CollectionFactory fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.core CollectionFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.core CollectionFactory.

The text is from its open source code.

Method

CollectioncreateApproximateCollection(@Nullable Object collection, int capacity)
Create the most approximate collection for the given collection.
MapcreateApproximateMap(@Nullable Object map, int capacity)
Create the most approximate map for the given map.
CollectioncreateCollection(Class collectionType, int capacity)
Create the most appropriate collection for the given collection type.
CollectioncreateCollection(Class collectionType, @Nullable Class elementType, int capacity)
Create the most appropriate collection for the given collection type.
MapcreateMap(Class mapType, int capacity)
Create the most appropriate map for the given map type.
MapcreateMap(Class mapType, @Nullable Class keyType, int capacity)
Create the most appropriate map for the given map type.
PropertiescreateStringAdaptingProperties()
Create a variant of java.util.Properties that automatically adapts non-String values to String representations in Properties#getProperty .
booleanisApproximableCollectionType(@Nullable Class collectionType)
Determine whether the given collection type is an approximable type, i.e.
booleanisApproximableMapType(@Nullable Class mapType)
Determine whether the given map type is an approximable type, i.e.