The Spring Framework

Uses of Class
org.springframework.core.MethodParameter

Packages that use MethodParameter
org.springframework.beans This package contains interfaces and classes for manipulating Java beans. 
org.springframework.beans.factory.support Classes supporting the org.springframework.beans.factory package. 
org.springframework.core Provides basic classes for exception handling and version detection, and other core helpers that are not specific to any part of the framework. 
 

Uses of MethodParameter in org.springframework.beans
 

Methods in org.springframework.beans with parameters of type MethodParameter
 Object TypeConverterDelegate.convertIfNecessary(Object newValue, Class requiredType, MethodParameter methodParam)
          Convert the value to the specified required type.
 Object TypeConverter.convertIfNecessary(Object value, Class requiredType, MethodParameter methodParam)
          Convert the value to the required type (if necessary from a String).
 Object SimpleTypeConverter.convertIfNecessary(Object value, Class requiredType, MethodParameter methodParam)
           
 Object BeanWrapperImpl.convertIfNecessary(Object value, Class requiredType, MethodParameter methodParam)
           
protected  Object TypeConverterDelegate.convertIfNecessary(String propertyName, Object oldValue, Object newValue, Class requiredType, PropertyDescriptor descriptor, MethodParameter methodParam)
          Convert the value to the required type (if necessary from a String), for the specified property.
protected  Collection TypeConverterDelegate.convertToTypedCollection(Collection original, String propertyName, MethodParameter methodParam)
           
protected  Map TypeConverterDelegate.convertToTypedMap(Map original, String propertyName, MethodParameter methodParam)
           
 

Uses of MethodParameter in org.springframework.beans.factory.support
 

Methods in org.springframework.beans.factory.support with parameters of type MethodParameter
protected  Object AbstractBeanFactory.doTypeConversionIfNecessary(TypeConverter converter, Object value, Class targetType, MethodParameter methodParam)
          Convert the given value into the specified target type, using the specified BeanWrapper.
 

Uses of MethodParameter in org.springframework.core
 

Methods in org.springframework.core that return MethodParameter
static MethodParameter MethodParameter.forMethodOrConstructor(Object methodOrConstructor, int parameterIndex)
          Create a new MethodParameter for the given method or constructor.
 

Methods in org.springframework.core with parameters of type MethodParameter
static Class GenericCollectionTypeResolver.getCollectionParameterType(MethodParameter methodParam)
          Determine the generic element type of the given Collection parameter.
static Class GenericCollectionTypeResolver.getMapKeyParameterType(MethodParameter methodParam)
          Determine the generic key type of the given Map parameter.
static Class GenericCollectionTypeResolver.getMapValueParameterType(MethodParameter methodParam)
          Determine the generic value type of the given Map parameter.
 


The Spring Framework

Copyright © 2002-2006 The Spring Framework.