com.vaadin.v7.data.util.converter.StringToBigDecimalConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-compatibility-server Show documentation
Show all versions of vaadin-compatibility-server Show documentation
Vaadin 7 compatibility package for Vaadin 8
/*
* Copyright (C) 2000-2024 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See for the full
* license.
*/
package com.vaadin.v7.data.util.converter;
import java.math.BigDecimal;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.util.Locale;
/**
* A converter that converts from {@link String} to {@link BigDecimal} and back.
* Uses the given locale and a {@link NumberFormat} instance for formatting and
* parsing.
*
* Leading and trailing white spaces are ignored when converting from a String.
*
*
* Override and overwrite {@link #getFormat(Locale)} to use a different format.
*
*
* @author Vaadin Ltd
* @since 7.2
*/
@Deprecated
public class StringToBigDecimalConverter
extends AbstractStringToNumberConverter {
@Override
protected NumberFormat getFormat(Locale locale) {
NumberFormat numberFormat = super.getFormat(locale);
if (numberFormat instanceof DecimalFormat) {
((DecimalFormat) numberFormat).setParseBigDecimal(true);
}
return numberFormat;
}
@Override
public BigDecimal convertToModel(String value,
Class extends BigDecimal> targetType, Locale locale)
throws ConversionException {
return (BigDecimal) convertToNumber(value, BigDecimal.class, locale);
}
@Override
public Class getModelType() {
return BigDecimal.class;
}
}