Getter methods
This is the collection of getter methods within the Store
interface. There are 13 getter methods in total.
getTables
The getTables
method returns a Tables
object containing the entire data of the Store
.
hasTables
The hasTables
method returns a boolean indicating whether any Table
objects exist in the Store
.
getTableIds
The getTableIds
method returns the Ids
of every Table
in the Store
.
getTable
The getTable
method returns an object containing the entire data of a single Table
in the Store
.
hasTable
The hasTable
method returns a boolean indicating whether a given Table
exists in the Store
.
getRowIds
The getRowIds
method returns the Ids
of every Row
in a given Table
.
getRow
The getRow
method returns an object containing the entire data of a single Row
in a given Table
.
hasRow
The hasRow
method returns a boolean indicating whether a given Row
exists in the Store
.
getCellIds
The getCellIds
method returns the Ids
of every Cell
in a given Row
, in a given Table
.
getCell
The getCell
method returns an object containing the value of a single Cell
in a given Row
, in a given Table
.
hasCell
The hasCell
method returns a boolean indicating whether a given Cell
exists in the Store
.
getJson
The getJson
method returns a string serialization of all of the Tables
in the Store
.
getSchemaJson
The getSchemaJson
method returns a string serialization of the Schema
of the Store
.