/* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.util.converter; import javafx.util.StringConverter; /** *

{@link StringConverter} implementation for {@link Double} * (and double primitive) values.

* @since JavaFX 2.1 */ public class DoubleStringConverter extends StringConverter { /** {@inheritDoc} */ @Override public Double fromString(String value) { // If the specified value is null or zero-length, return null if (value == null) { return null; } value = value.trim(); if (value.length() < 1) { return null; } return Double.valueOf(value); } /** {@inheritDoc} */ @Override public String toString(Double value) { // If the specified value is null, return a zero-length String if (value == null) { return ""; } return Double.toString(value.doubleValue()); } }