MCPcopy Index your code
hub / github.com/OpenTSDB/opentsdb / toString

Method toString

src/core/Downsampler.java:492–508  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

appendMethod · 0.45
toStringMethod · 0.45

Tested by

no test coverage detected