Interface ValueBinder
-
- All Known Implementing Classes:
ValueBinderRef.UndefinedBinderImplementationType
public interface ValueBinder
A binder from a value to a single index field.This binder takes advantage of provided metadata to pick, configure and create a
ValueBridge
.- See Also:
ValueBridge
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
bind(ValueBindingContext<?> context)
Binds a value to an index field.
-
-
-
Method Detail
-
bind
void bind(ValueBindingContext<?> context)
Binds a value to an index field.The context passed in parameter provides various information about the value being bound. Implementations are expected to take advantage of that information and to call one of the
bridge(...)
methods on the context to set the bridge.- Parameters:
context
- A context object providing information about the value being bound, and expecting a call to one of itsbridge(...)
methods.
-
-