()
| 393 | } |
| 394 | |
| 395 | @Override |
| 396 | public String toString() { |
| 397 | if (count() > 0) { |
| 398 | return MoreObjects.toStringHelper(this).add("count", count).add("mean", mean).add("populationStandardDeviation", populationStandardDeviation()).add("min", min).add("max", max).toString(); |
| 399 | } else { |
| 400 | return MoreObjects.toStringHelper(this).add("count", count).toString(); |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | double sumOfSquaresOfDeltas() { |
| 405 | return sumOfSquaresOfDeltas; |
nothing calls this directly
no test coverage detected