Interface DataBinder.ValueResolver

Enclosing class:
DataBinder
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface DataBinder.ValueResolver
Strategy for constructor binding to look up the values to bind to a given constructor parameter.
  • Method Summary

    Modifier and Type
    Method
    Description
    resolveValue(String name, Class<?> type)
    Resolve the value for the given name and target parameter type.
  • Method Details

    • resolveValue

      @Nullable Object resolveValue(String name, Class<?> type)
      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 objects
      type - the target type, based on the constructor parameter type
      Returns:
      the resolved value, possibly null if none found