Interface DataBinder.ValueResolver
- All Known Implementing Classes:
ServletRequestDataBinder.ServletRequestValueResolver
- Enclosing class:
DataBinder
public static interface DataBinder.ValueResolver
Strategy for
constructor binding
to look up the values
to bind to a given constructor parameter.- Author:
- Rod Johnson, Juergen Hoeller, Rob Harrop, Stephane Nicoll, Kazuki Shimizu, Sam Brannen
-
Method Summary
-
Method Details
-
resolveValue
Resolve the value for the given name and target parameter type.- Parameters:
name
- the name to use for the lookup, possibly a nested path for constructor parameters on nested objectstype
- the target type, based on the constructor parameter type- Returns:
- the resolved value, possibly
null
if none found
-
getNames
-