List of utility methods to do Celsius to Fahrenheit
Double | celsiusToFahrenheit(Double celsius) Converts celsius to fahrenheit. if (celsius == null) { return null; return celsius * 1.8 + 32.0; |
Double | celsiusToFahrenheit(Double celsius) Converts celsius to fahrenheit. return celsius == null ? null : new BigDecimal(celsius).multiply(ONE_POINT_EIGHT).add(THIRTY_TWO).doubleValue(); |
double | celsiusToFahrenheit(double temperature) celsius To Fahrenheit return (temperature + 32) / 5 * 9;
|
float | celsiusToFahrenheit(float celsius) celsius To Fahrenheit return (CELSIUS_TO_FAHRENHEIT_MULT * celsius) + CELSIUS_TO_FARENHEIT_OFFSET;
|
float | celsiusToFahrenheit(float value) celsius To Fahrenheit return value * 9.0f / 5.0f + 32.0f;
|
double | toFahrenheit(double c) Swedish Astronomer Andres Celsius (1701-1744) Tf = (9/5)*Tc+32; Tc = temperature in degrees Celsius, Tf = temperature in degrees Fahrenheit double f = ((9.0f * c) / 5.0f) + 32.0f; return f; |