A utility class to make it possible to view existing Attributes as a table of data.

Hierarchy

  • AttributeTableView

Properties

allRows: {
    [key: string]: JsonType;
}[]

Get all rows.

rowCount: number

Get the number of rows available.

Methods

  • Get all rows.

    Returns {
        [key: string]: JsonType;
    }[]

  • Get the cell at the given coordinates.

    Parameters

    • rowIndex: number
    • columnName: string

    Returns JsonType

  • Get the values of a column.

    Parameters

    • columnName: string

      name of the column

    Returns JsonType[]

  • Get the row at the given index

    Parameters

    • rowIndex: number

      the index of a row

    Returns null | {
        [key: string]: JsonType;
    }

  • Get a row as a Java MapAttributeValue.

    Parameters

    • rowIndex: number

    Returns null | AttributeValue

  • Get the number of rows available.

    Returns number

  • Returns string