()
| 1561 | } |
| 1562 | |
| 1563 | @Override |
| 1564 | public String toString() { |
| 1565 | final StringBuilder buf = new StringBuilder(); |
| 1566 | buf.append("table=") |
| 1567 | .append(Bytes.pretty(table)) |
| 1568 | .append(", start=") |
| 1569 | .append(Bytes.pretty(start)) |
| 1570 | .append(", stop=") |
| 1571 | .append(Bytes.pretty(stop)) |
| 1572 | .append(", family=") |
| 1573 | .append(Bytes.pretty(family)) |
| 1574 | .append(", filter=") |
| 1575 | .append(filter); |
| 1576 | return buf.toString(); |
| 1577 | } |
| 1578 | |
| 1579 | @Override |
| 1580 | public Deferred<ArrayList<ArrayList<KeyValue>>> answer( |
no test coverage detected