TinyBase logoTinyBase β

Getter methods

getTables

The getTables method returns a Tables object containing the entire tabular data of the Store. Read more.

getTablesJson

The getTablesJson method returns a string serialization of all of the Tables in the Store. Read more.

getTablesSchemaJson

The getTablesSchemaJson method returns a string serialization of the TablesSchema of the Store. Read more.

hasTables

The hasTables method returns a boolean indicating whether any Table objects exist in the Store. Read more.

hasTablesSchema

The hasTablesSchema method returns a boolean indicating whether the Store currently has a TablesSchema applied to it. Read more.

getTableIds

The getTableIds method returns the Ids of every Table in the Store. Read more.

getTable

The getTable method returns an object containing the entire data of a single Table in the Store. Read more.

getTableCellIds

The getTableCellIds method returns the Ids of every Cell used across the whole Table. Read more.

hasTable

The hasTable method returns a boolean indicating whether a given Table exists in the Store. Read more.

hasTableCell

The hasTableCell method returns a boolean indicating whether a given Cell exists anywhere in a Table, not just in a specific Row. Read more.

getRowIds

The getRowIds method returns the Ids of every Row in a given Table. Read more.

getSortedRowIds

The getSortedRowIds method returns the Ids of every Row in a given Table, sorted according to the values in a specified Cell. Read more.

getRow

The getRow method returns an object containing the entire data of a single Row in a given Table. Read more.

getRowCount

The getRowCount method returns the count of the Row objects in a given Table. Read more.

hasRow

The hasRow method returns a boolean indicating whether a given Row exists in the Store. Read more.

getCellIds

The getCellIds method returns the Ids of every Cell in a given Row in a given Table. Read more.

getCell

The getCell method returns the value of a single Cell in a given Row, in a given Table. Read more.

hasCell

The hasCell method returns a boolean indicating whether a given Cell exists in a given Row in a given Table. Read more.

getValues

The getValues method returns an object containing the entire set of keyed Values in the Store. Read more.

getValuesJson

The getValuesJson method returns a string serialization of all of the keyed Values in the Store. Read more.

getValuesSchemaJson

The getValuesSchemaJson method returns a string serialization of the ValuesSchema of the Store. Read more.

hasValues

The hasValues method returns a boolean indicating whether any Values exist in the Store. Read more.

hasValuesSchema

The hasValuesSchema method returns a boolean indicating whether the Store currently has a ValuesSchema applied to it. Read more.

getValue

The getValue method returns a single keyed Value in the Store. Read more.

getValueIds

The getValueIds method returns the Ids of every Value in a Store. Read more.

hasValue

The hasValue method returns a boolean indicating whether a given Value exists in the Store. Read more.

getContent

The getContent method returns a Tables object and a Values object in an array, representing the entire content of the Store. Read more.

getJson

The getJson method returns a string serialization of all the Store content: both the Tables and the keyed Values. Read more.

getMergeableContent

The getMergeableContent method returns the full content of a MergeableStore, together with the metadata required to make it mergeable with another. Read more.

getSchemaJson

The getSchemaJson method returns a string serialization of both the TablesSchema and ValuesSchema of the Store. Read more.

isMergeable

The isMergeable method lets you know if the Store is mergeable. Read more.