Resets with a new pair of a timestamp and a double value. @param timestamp A timestamp. @param value A double value.
(final long timestamp, final double value)
| 34 | * @param value A double value. |
| 35 | */ |
| 36 | public void reset(final long timestamp, final double value) { |
| 37 | this.timestamp = timestamp; |
| 38 | this.is_integer = false; |
| 39 | this.value = Double.doubleToRawLongBits(value); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Resets with a new pair of a timestamp and a long value. |