| 490 | } |
| 491 | |
| 492 | @Override |
| 493 | public String toString() { |
| 494 | final StringBuilder buf = new StringBuilder(); |
| 495 | buf.append("ValuesInInterval: ") |
| 496 | .append(", timestamp_end_interval=").append(timestamp_end_interval) |
| 497 | .append(", has_next_value_from_source=") |
| 498 | .append(has_next_value_from_source) |
| 499 | .append(", previousCalendar=") |
| 500 | .append(previous_calendar == null ? "null" : previous_calendar) |
| 501 | .append(", nextCalendar=") |
| 502 | .append(next_calendar == null ? "null" : next_calendar); |
| 503 | if (has_next_value_from_source) { |
| 504 | buf.append(", nextValue=(").append(next_dp).append(')'); |
| 505 | } |
| 506 | buf.append(", source=").append(source); |
| 507 | return buf.toString(); |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | @Override |