Here you can find the source of toDouble(Number n)
Parameter | Description |
---|---|
The | Number to be converted. |
null
when the input parameter is null
.
public static Double toDouble(Number n)
//package com.java2s; /******************************************************************************* * Copyright (c) 2010-2015 BSI Business Systems Integration AG. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors://www . ja v a 2 s. co m * BSI Business Systems Integration AG - initial API and implementation ******************************************************************************/ public class Main { /** * Converts a Number to a Double. * * @param The * Number to be converted. * @return The converted Double. Returns <code>null</code> when the input parameter is <code>null</code>. */ public static Double toDouble(Number n) { if (n == null) { return null; } if (n instanceof Float) { // rounding error workaround return new Double(n.toString()); } else { return new Double(n.doubleValue()); } } }