T - The template typeR - The result typepublic interface ValuesMapBinder<T,R>
ValuesMapBinder provides a way to apply an map of named object values to a template object of type T to yield a new object instance of type R. The object array is a positional argument list. There is no named-argument facility.
Parameter Examples:
| Modifier and Type | Method and Description |
|---|---|
R |
bindValues(T context,
Map<String,Object> values)
Using context instance of type S, AKA the template, create and bind values to
target object of type R
|
R bindValues(T context, Map<String,Object> values)
context - A context object that knows how to provide an instance of type Rvalues - An array of values which should be bound to the new R instanceCopyright © 2018. All rights reserved.