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; /* www .j a va 2 s. com*/ import java.util.Date; public class HistoryMeasurement { final String source; final String variable; final Date timestamp; final double value; final String unit; public HistoryMeasurement(String source, String variable, Date timestamp, double value, String unit) { this.source = source; this.variable = variable; this.timestamp = timestamp; this.value = value; this.unit = unit; } }