A data model implementation for in-memory JSON data.

Hierarchy (view full)

Constructors

Properties

_bodyFields: Field[]
_data: DataSource
_headerFields: Field[]
_missingValues: null | MissingValuesMap

Accessors

Methods

  • Get the data value for a cell in the data model.

    Parameters

    • region: CellRegion

      The cell region of interest.

    • row: number

      The row index of the cell of interest.

    • column: number

      The column index of the cell of interest.

    Returns any

    • The data value for the specified cell.

    Notes

    A missingValue as defined by the schema is converted to null.

  • Get the metadata for a cell in the data model.

    Parameters

    • region: CellRegion

      The cell region of interest.

    • row: number

      The row index of the cell of of interest.

    • column: number

      The column index of the cell of interest.

    Returns Metadata

    The metadata for the cell.