Interface RowSortedTable<R extends @Nullable Object,​C extends @Nullable Object,​V extends @Nullable Object>

    • Method Detail

      • rowMap

        SortedMap<R,​Map<C,​V>> rowMap()
        Returns a view that associates each row key with the corresponding map from column keys to values. Changes to the returned map will update this table. The returned map does not support put() or putAll(), or setValue() on its entries.

        In contrast, the maps returned by rowMap().get() have the same behavior as those returned by Table.row(R). Those maps may support setValue(), put(), and putAll().

        This method returns a SortedMap, instead of the Map specified in the Table interface.

        Specified by:
        rowMap in interface Table<R extends @Nullable Object,​C extends @Nullable Object,​V extends @Nullable Object>
        Returns:
        a map view from each row key to a secondary map from column keys to values