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. 
org.springframework.web.bind.annotation.support Support classes for web annotation processing. 
org.springframework.web.bind.support Support classes for web data binding. 
 

Uses of MethodParameter in org.springframework.beans
 

Methods in org.springframework.beans that return MethodParameter
static MethodParameter BeanUtils.getWriteMethodParameter(PropertyDescriptor pd)
          Obtain a new MethodParameter object for the write method of the specified property.
 

Methods in org.springframework.beans with parameters of type MethodParameter
 Object BeanWrapperImpl.convertIfNecessary(Object value, Class requiredType, MethodParameter methodParam)
           
 Object DirectFieldAccessor.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.
DependencyDescriptor(MethodParameter methodParameter, boolean required, boolean eager)
          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 Type GenericTypeResolver.getTargetType(MethodParameter methodParam)
          Determine the target type for the given parameter specification.
static String Conventions.getVariableNameForParameter(MethodParameter parameter)
          Determine the conventional variable name for the supplied parameter, taking the generic collection type (if any) into account.
static Class GenericTypeResolver.resolveParameterType(MethodParameter methodParam, Class clazz)
          Determine the target type for the given generic parameter type.
 

Constructors in org.springframework.core with parameters of type MethodParameter
MethodParameter(MethodParameter original)
          Copy constructor, resulting in an independent MethodParameter object based on the same metadata and cache state that the original object was in.
 

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)
           
 

Uses of MethodParameter in org.springframework.web.bind.annotation.support
 

Methods in org.springframework.web.bind.annotation.support with parameters of type MethodParameter
protected  Object HandlerMethodInvoker.resolveCommonArgument(MethodParameter methodParameter, NativeWebRequest webRequest)
           
 

Uses of MethodParameter in org.springframework.web.bind.support
 

Methods in org.springframework.web.bind.support with parameters of type MethodParameter
 Object WebArgumentResolver.resolveArgument(MethodParameter methodParameter, NativeWebRequest webRequest)
          Resolve an argument for the given handler method parameter within the given web request.
 



Copyright © 2002-2008 The Spring Framework.