Interface FieldValueSetter<ObjectT,ValueT>

All Superinterfaces:
Serializable

@Internal public interface FieldValueSetter<ObjectT,ValueT> extends Serializable
For internal use only; no backwards-compatibility guarantees.

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.

  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the name of the field.
    void
    set(ObjectT object, @Nullable ValueT value)
    Sets the specified field on object to value.
  • Method Details

    • set

      void set(ObjectT object, @Nullable ValueT value)
      Sets the specified field on object to value.
    • name

      String name()
      Returns the name of the field.