The statistical counters.
()
| 159 | * The statistical counters. |
| 160 | **/ |
| 161 | public String[] getKeys() |
| 162 | { |
| 163 | int n = size(); |
| 164 | String[] res = new String[n]; |
| 165 | for (int i = 0; i < n; i++) |
| 166 | res[i] = Native.statsGetKey(getContext().nCtx(), getNativeObject(), i); |
| 167 | return res; |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * The value of a particular statistical counter. |
nothing calls this directly
no test coverage detected