Back to project page sunshine.
The source code is released under:
Apache License
If you think the Android project sunshine 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.zmb.sunshine.data; //from w ww . j a v a 2 s . c o m /** * Contains various conversions. */ public class Convert { private Convert() { } /** * Convert a temperature in celsius to degrees fahrenheit. * @param celsius * @return */ public static double toFahrenheit(double celsius) { return celsius * 1.8 + 32d; } }