@Internal public interface FieldValueSetter<ObjectT,ValueT> extends java.io.Serializable
An interface to set a field of a class.
Implementations of this interface are generated at runtime to map Row fields back into object fields.
Modifier and Type | Method and Description |
---|---|
java.lang.String |
name()
Returns the name of the field.
|
void |
set(ObjectT object,
ValueT value)
Sets the specified field on object to value.
|