()
| 363 | } |
| 364 | |
| 365 | @Override |
| 366 | public String toString() { |
| 367 | if (count() > 0) { |
| 368 | return MoreObjects.toStringHelper(this) |
| 369 | .add("count", count) |
| 370 | .add("mean", mean) |
| 371 | .add("populationStandardDeviation", populationStandardDeviation()) |
| 372 | .add("min", min) |
| 373 | .add("max", max) |
| 374 | .toString(); |
| 375 | } else { |
| 376 | return MoreObjects.toStringHelper(this).add("count", count).toString(); |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | double sumOfSquaresOfDeltas() { |
| 381 | return sumOfSquaresOfDeltas; |
nothing calls this directly
no test coverage detected