All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.carrotsearch.console.jcommander.converters.DoubleConverter Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
/*
 * console-tools
 *
 * Copyright (C) 2019, Carrot Search s.c.
 * All rights reserved.
 */
package com.carrotsearch.console.jcommander.converters;

import com.carrotsearch.console.jcommander.ParameterException;

/**
 * Convert a string to a double.
 *
 * @author acornejo
 */
public class DoubleConverter extends BaseConverter {

  public DoubleConverter(String optionName) {
    super(optionName);
  }

  public Double convert(String value) {
    try {
      return Double.parseDouble(value);
    } catch (NumberFormatException ex) {
      throw new ParameterException(getErrorString(value, "a double"));
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy