Creates a new Scanner for a particular table. @param table The name of the table you intend to scan. @return A new scanner for this table.
(final byte[] table)
| 1467 | * @return A new scanner for this table. |
| 1468 | */ |
| 1469 | public Scanner newScanner(final byte[] table) { |
| 1470 | return new Scanner(this, table); |
| 1471 | } |
| 1472 | |
| 1473 | /** |
| 1474 | * Creates a new {@link Scanner} for a particular table. |
no outgoing calls