Sets a regular expression to filter results based on the row key. This is equivalent to calling #setFilter setFilter(new KeyRegexpFilter(regexp)) @param regexp The regular expression with which to filter the row keys.
(final String regexp)
| 434 | * @param regexp The regular expression with which to filter the row keys. |
| 435 | */ |
| 436 | public void setKeyRegexp(final String regexp) { |
| 437 | filter = new KeyRegexpFilter(regexp); |
| 438 | } |
| 439 | |
| 440 | /** |
| 441 | * Sets a regular expression to filter results based on the row key. |
no outgoing calls