json method

VlDataRow json(
  1. String field,
  2. VlJson value
)

Puts an already-built value in one column of this row.

The escape hatch for a column this API has no typed setter for — a nested object a geoshape reads, or a value that came out of the parser.

field The column name. value The value, as the JSON model holds it.

Returns This row, so columns chain.

Implementation

VlDataRow json(String field, VlJson value) {
  this.obj.setMember(field, value);
  return this;
}