str method

VlDataRow str(
  1. String field,
  2. String value
)

Puts text in one column of this row.

A column of text is read as a category unless every value in it parses as an ISO date, in which case it is an instant.

field The column name. value The value.

Returns This row, so columns chain.

Implementation

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