Default constructor.
()
| 35 | * Default constructor. |
| 36 | */ |
| 37 | public Stats() { |
| 38 | values = new TokenIntMap(); |
| 39 | type = NONE; |
| 40 | min = Double.MAX_VALUE; |
| 41 | max = -Double.MAX_VALUE; |
| 42 | leaf = true; |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Constructor, specifying an input stream. |
nothing calls this directly
no test coverage detected