Back to project page QuantiModo-SDK-Android.
The source code is released under:
GNU General Public License
If you think the Android project QuantiModo-SDK-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.quantimodo.android.sdk.model; //from w w w . ja v a2 s.co m public class Measurement { public long timestamp; public double value; public int duration; private Measurement() { } public Measurement(long epochTimestamp, double value, int durationSeconds) { this.timestamp = epochTimestamp; this.value = value; this.duration = durationSeconds; } public Measurement(long epochTimestamp, double value) { this.timestamp = epochTimestamp; this.value = value; this.duration = -1; } }