Setter methods
This is the collection of setter methods within the Store
interface. There are 8 setter methods in total.
setTables
The setTables
method takes an object and sets the entire data of the Store
.
setTable
The setTable
method takes an object and sets the entire data of a single Table
in the Store
.
setRow
The setRow
method takes an object and sets the entire data of a single Row
in the Store
.
addRow
The addRow
method takes an object and creates a new Row
in the Store
, returning the unique Id
assigned to it.
setPartialRow
The setPartialRow
method takes an object and sets partial data of a single Row
in the Store
, leaving other Cell
values unaffected.
setCell
The setCell
method sets the value of a single Cell
in the Store
.
setJson
The setJson
method takes a string serialization of all of the Tables
in the Store
and attempts to update it to that value
setSchema
The setSchema
method lets you specify the Schema
of the Store
.