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.config SPI interfaces and configuration-related convenience classes for bean factories. 
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. 
org.springframework.validation Provides data binding and validation functionality, for usage in business and/or UI layers. 
 

Uses of MethodParameter in org.springframework.beans
 

Methods in org.springframework.beans with parameters of type MethodParameter
 Object DirectFieldAccessor.convertIfNecessary(Object value, Class requiredType, MethodParameter methodParam)
           
 Object BeanWrapperImpl.convertIfNecessary(Object value, Class requiredType, MethodParameter methodParam)
           
 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)
           
 

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

Methods in org.springframework.beans.factory.config that return MethodParameter
 MethodParameter DependencyDescriptor.getMethodParameter()
          Return the wrapped MethodParameter, if any.
 

Constructors in org.springframework.beans.factory.config with parameters of type MethodParameter
DependencyDescriptor(MethodParameter methodParameter, boolean required)
          Create a new descriptor for a method or constructor parameter.
 

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.
static String Conventions.getVariableNameForParameter(MethodParameter parameter)
          Determine the conventional variable name for the supplied parameter, taking the generic collection type (if any) into account.
 

Uses of MethodParameter in org.springframework.validation
 

Methods in org.springframework.validation with parameters of type MethodParameter
 Object DataBinder.convertIfNecessary(Object value, Class requiredType, MethodParameter methodParam)
           
 


The Spring Framework

Copyright © 2002-2007 The Spring Framework.