Returns the value corresponding to the given row and column keys, or null if no such mapping exists. @param rowKey key of row to search for @param columnKey key of column to search for
(@Nullable Object rowKey, @Nullable Object columnKey)
| 102 | * @param columnKey key of column to search for |
| 103 | */ |
| 104 | V get(@Nullable Object rowKey, @Nullable Object columnKey); |
| 105 | |
| 106 | /** Returns {@code true} if the table contains no mappings. */ |
| 107 | boolean isEmpty(); |
no outgoing calls
no test coverage detected