All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.core.GenericCollectionTypeResolver Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/*
 * Copyright 2002-2017 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.core;

import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.Collection;
import java.util.Map;

/**
 * Helper class for determining element types of collections and maps.
 *
 * 

Mainly intended for usage within the framework, determining the * target type of values to be added to a collection or map * (to be able to attempt type conversion if appropriate). * * @author Juergen Hoeller * @author Phillip Webb * @since 2.0 * @see ResolvableType * @deprecated as of 4.3.6, in favor of direct {@link ResolvableType} usage */ @Deprecated public abstract class GenericCollectionTypeResolver { /** * Determine the generic element type of the given Collection class * (if it declares one through a generic superclass or generic interface). * @param collectionClass the collection class to introspect * @return the generic type, or {@code null} if none */ @SuppressWarnings("rawtypes") public static Class getCollectionType(Class collectionClass) { return ResolvableType.forClass(collectionClass).asCollection().resolveGeneric(); } /** * Determine the generic key type of the given Map class * (if it declares one through a generic superclass or generic interface). * @param mapClass the map class to introspect * @return the generic type, or {@code null} if none */ @SuppressWarnings("rawtypes") public static Class getMapKeyType(Class mapClass) { return ResolvableType.forClass(mapClass).asMap().resolveGeneric(0); } /** * Determine the generic value type of the given Map class * (if it declares one through a generic superclass or generic interface). * @param mapClass the map class to introspect * @return the generic type, or {@code null} if none */ @SuppressWarnings("rawtypes") public static Class getMapValueType(Class mapClass) { return ResolvableType.forClass(mapClass).asMap().resolveGeneric(1); } /** * Determine the generic element type of the given Collection field. * @param collectionField the collection field to introspect * @return the generic type, or {@code null} if none */ public static Class getCollectionFieldType(Field collectionField) { return ResolvableType.forField(collectionField).asCollection().resolveGeneric(); } /** * Determine the generic element type of the given Collection field. * @param collectionField the collection field to introspect * @param nestingLevel the nesting level of the target type * (typically 1; e.g. in case of a List of Lists, 1 would indicate the * nested List, whereas 2 would indicate the element of the nested List) * @return the generic type, or {@code null} if none */ public static Class getCollectionFieldType(Field collectionField, int nestingLevel) { return ResolvableType.forField(collectionField).getNested(nestingLevel).asCollection().resolveGeneric(); } /** * Determine the generic element type of the given Collection field. * @param collectionField the collection field to introspect * @param nestingLevel the nesting level of the target type * (typically 1; e.g. in case of a List of Lists, 1 would indicate the * nested List, whereas 2 would indicate the element of the nested List) * @param typeIndexesPerLevel Map keyed by nesting level, with each value * expressing the type index for traversal at that level * @return the generic type, or {@code null} if none * @deprecated as of 4.0, in favor of using {@link ResolvableType} for arbitrary nesting levels */ @Deprecated public static Class getCollectionFieldType(Field collectionField, int nestingLevel, Map typeIndexesPerLevel) { return ResolvableType.forField(collectionField).getNested(nestingLevel, typeIndexesPerLevel).asCollection().resolveGeneric(); } /** * Determine the generic key type of the given Map field. * @param mapField the map field to introspect * @return the generic type, or {@code null} if none */ public static Class getMapKeyFieldType(Field mapField) { return ResolvableType.forField(mapField).asMap().resolveGeneric(0); } /** * Determine the generic key type of the given Map field. * @param mapField the map field to introspect * @param nestingLevel the nesting level of the target type * (typically 1; e.g. in case of a List of Lists, 1 would indicate the * nested List, whereas 2 would indicate the element of the nested List) * @return the generic type, or {@code null} if none */ public static Class getMapKeyFieldType(Field mapField, int nestingLevel) { return ResolvableType.forField(mapField).getNested(nestingLevel).asMap().resolveGeneric(0); } /** * Determine the generic key type of the given Map field. * @param mapField the map field to introspect * @param nestingLevel the nesting level of the target type * (typically 1; e.g. in case of a List of Lists, 1 would indicate the * nested List, whereas 2 would indicate the element of the nested List) * @param typeIndexesPerLevel Map keyed by nesting level, with each value * expressing the type index for traversal at that level * @return the generic type, or {@code null} if none * @deprecated as of 4.0, in favor of using {@link ResolvableType} for arbitrary nesting levels */ @Deprecated public static Class getMapKeyFieldType(Field mapField, int nestingLevel, Map typeIndexesPerLevel) { return ResolvableType.forField(mapField).getNested(nestingLevel, typeIndexesPerLevel).asMap().resolveGeneric(0); } /** * Determine the generic value type of the given Map field. * @param mapField the map field to introspect * @return the generic type, or {@code null} if none */ public static Class getMapValueFieldType(Field mapField) { return ResolvableType.forField(mapField).asMap().resolveGeneric(1); } /** * Determine the generic value type of the given Map field. * @param mapField the map field to introspect * @param nestingLevel the nesting level of the target type * (typically 1; e.g. in case of a List of Lists, 1 would indicate the * nested List, whereas 2 would indicate the element of the nested List) * @return the generic type, or {@code null} if none */ public static Class getMapValueFieldType(Field mapField, int nestingLevel) { return ResolvableType.forField(mapField).getNested(nestingLevel).asMap().resolveGeneric(1); } /** * Determine the generic value type of the given Map field. * @param mapField the map field to introspect * @param nestingLevel the nesting level of the target type * (typically 1; e.g. in case of a List of Lists, 1 would indicate the * nested List, whereas 2 would indicate the element of the nested List) * @param typeIndexesPerLevel Map keyed by nesting level, with each value * expressing the type index for traversal at that level * @return the generic type, or {@code null} if none * @deprecated as of 4.0, in favor of using {@link ResolvableType} for arbitrary nesting levels */ @Deprecated public static Class getMapValueFieldType(Field mapField, int nestingLevel, Map typeIndexesPerLevel) { return ResolvableType.forField(mapField).getNested(nestingLevel, typeIndexesPerLevel).asMap().resolveGeneric(1); } /** * Determine the generic element type of the given Collection parameter. * @param methodParam the method parameter specification * @return the generic type, or {@code null} if none */ public static Class getCollectionParameterType(MethodParameter methodParam) { return ResolvableType.forMethodParameter(methodParam).asCollection().resolveGeneric(); } /** * Determine the generic key type of the given Map parameter. * @param methodParam the method parameter specification * @return the generic type, or {@code null} if none */ public static Class getMapKeyParameterType(MethodParameter methodParam) { return ResolvableType.forMethodParameter(methodParam).asMap().resolveGeneric(0); } /** * Determine the generic value type of the given Map parameter. * @param methodParam the method parameter specification * @return the generic type, or {@code null} if none */ public static Class getMapValueParameterType(MethodParameter methodParam) { return ResolvableType.forMethodParameter(methodParam).asMap().resolveGeneric(1); } /** * Determine the generic element type of the given Collection return type. * @param method the method to check the return type for * @return the generic type, or {@code null} if none */ public static Class getCollectionReturnType(Method method) { return ResolvableType.forMethodReturnType(method).asCollection().resolveGeneric(); } /** * Determine the generic element type of the given Collection return type. *

If the specified nesting level is higher than 1, the element type of * a nested Collection/Map will be analyzed. * @param method the method to check the return type for * @param nestingLevel the nesting level of the target type * (typically 1; e.g. in case of a List of Lists, 1 would indicate the * nested List, whereas 2 would indicate the element of the nested List) * @return the generic type, or {@code null} if none */ public static Class getCollectionReturnType(Method method, int nestingLevel) { return ResolvableType.forMethodReturnType(method).getNested(nestingLevel).asCollection().resolveGeneric(); } /** * Determine the generic key type of the given Map return type. * @param method the method to check the return type for * @return the generic type, or {@code null} if none */ public static Class getMapKeyReturnType(Method method) { return ResolvableType.forMethodReturnType(method).asMap().resolveGeneric(0); } /** * Determine the generic key type of the given Map return type. * @param method the method to check the return type for * @param nestingLevel the nesting level of the target type * (typically 1; e.g. in case of a List of Lists, 1 would indicate the * nested List, whereas 2 would indicate the element of the nested List) * @return the generic type, or {@code null} if none */ public static Class getMapKeyReturnType(Method method, int nestingLevel) { return ResolvableType.forMethodReturnType(method).getNested(nestingLevel).asMap().resolveGeneric(0); } /** * Determine the generic value type of the given Map return type. * @param method the method to check the return type for * @return the generic type, or {@code null} if none */ public static Class getMapValueReturnType(Method method) { return ResolvableType.forMethodReturnType(method).asMap().resolveGeneric(1); } /** * Determine the generic value type of the given Map return type. * @param method the method to check the return type for * @param nestingLevel the nesting level of the target type * (typically 1; e.g. in case of a List of Lists, 1 would indicate the * nested List, whereas 2 would indicate the element of the nested List) * @return the generic type, or {@code null} if none */ public static Class getMapValueReturnType(Method method, int nestingLevel) { return ResolvableType.forMethodReturnType(method).getNested(nestingLevel).asMap().resolveGeneric(1); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy