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. j av a 2 s . c o m /* { { "operation": "MULTIPLY", "value": 1000 } } */ public class ConversionStep { public static final String OPERATION_MULTIPLY = "MULTIPLY"; public static final String OPERATION_SUM = "SUM"; public final String operation; public final double value; public ConversionStep(String operation, double value) { this.operation = operation; this.value = value; } }