-
- Type Parameters:
R- The resulting object type
- All Known Implementing Classes:
ContextualArrayBindings,ContextualBindings,ContextualMapBindings,CSVBindings,StringBindings
public interface Binder<R>A Binder is a type that knows how to return a result object given a long value to bind mapped values with.
-
-
Method Detail
-
bind
R bind(long value)
Bind values derived from a long to some object, returning an object type R- Parameters:
value- a long input value- Returns:
- an R
-
-