()
| 309 | } |
| 310 | |
| 311 | @Override |
| 312 | public String toString() { |
| 313 | final StringBuilder buf = new StringBuilder(); |
| 314 | buf.append("UnionIterator(id=") |
| 315 | .append(id) |
| 316 | .append(", useQueryTags=") |
| 317 | .append(union_on_query_tagks) |
| 318 | .append(", includeAggTags=") |
| 319 | .append(include_agg_tags) |
| 320 | .append(", index=") |
| 321 | .append(index) |
| 322 | .append(", queries=") |
| 323 | .append(queries); |
| 324 | return buf.toString(); |
| 325 | } |
| 326 | |
| 327 | // Iterator implementations |
| 328 |