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

com.carrotsearch.console.jcommander.converters.BigDecimalConverter 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;
import java.math.BigDecimal;

/**
 * Converts a String to a BigDecimal.
 *
 * @author Angus Smithson
 */
public class BigDecimalConverter extends BaseConverter {

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

  public BigDecimal convert(String value) {
    try {
      return new BigDecimal(value);
    } catch (NumberFormatException nfe) {
      throw new ParameterException(getErrorString(value, "a BigDecimal"));
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy