Interface DataBinder.NameResolver
- All Known Implementing Classes:
- BindParamNameResolver
- Enclosing class:
- DataBinder
public static interface DataBinder.NameResolver
Strategy to determine the name of the value to bind to a method parameter.
Supported on constructor parameters with 
constructor binding
which performs lookups via DataBinder.ValueResolver.resolveValue(String, Class).- Author:
- Rod Johnson, Juergen Hoeller, Rob Harrop, Stephane Nicoll, Kazuki Shimizu, Sam Brannen
- 
Method SummaryModifier and TypeMethodDescriptionresolveName(MethodParameter parameter) Return the name to use for the given method parameter, ornullif unresolved.
- 
Method Details- 
resolveNameReturn the name to use for the given method parameter, ornullif unresolved. For constructor parameters, the name is determined viaDefaultParameterNameDiscovererif unresolved.
 
-