Class StringToBigDecimalConverter
- java.lang.Object
-
- com.vaadin.v7.data.util.converter.AbstractStringToNumberConverter<BigDecimal>
-
- com.vaadin.v7.data.util.converter.StringToBigDecimalConverter
-
- All Implemented Interfaces:
Converter<String,BigDecimal>,Serializable
@Deprecated public class StringToBigDecimalConverter extends AbstractStringToNumberConverter<BigDecimal>
Deprecated.A converter that converts fromStringtoBigDecimaland back. Uses the given locale and aNumberFormatinstance for formatting and parsing.Leading and trailing white spaces are ignored when converting from a String.
Override and overwrite
getFormat(Locale)to use a different format.- Since:
- 7.2
- Author:
- Vaadin Ltd
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.vaadin.v7.data.util.converter.Converter
Converter.ConversionException
-
-
Constructor Summary
Constructors Constructor Description StringToBigDecimalConverter()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description BigDecimalconvertToModel(String value, Class<? extends BigDecimal> targetType, Locale locale)Deprecated.Converts the given value from target type to source type.protected NumberFormatgetFormat(Locale locale)Deprecated.Returns the format used byAbstractStringToNumberConverter.convertToPresentation(Object, Class, Locale)andConverter.convertToModel(Object, Class, Locale).Class<BigDecimal>getModelType()Deprecated.The source type of the converter.-
Methods inherited from class com.vaadin.v7.data.util.converter.AbstractStringToNumberConverter
convertToNumber, convertToPresentation, getPresentationType
-
-
-
-
Method Detail
-
getFormat
protected NumberFormat getFormat(Locale locale)
Deprecated.Description copied from class:AbstractStringToNumberConverterReturns the format used byAbstractStringToNumberConverter.convertToPresentation(Object, Class, Locale)andConverter.convertToModel(Object, Class, Locale).- Overrides:
getFormatin classAbstractStringToNumberConverter<BigDecimal>- Parameters:
locale- The locale to use- Returns:
- A NumberFormat instance
-
convertToModel
public BigDecimal convertToModel(String value, Class<? extends BigDecimal> targetType, Locale locale) throws Converter.ConversionException
Deprecated.Description copied from interface:ConverterConverts the given value from target type to source type.A converter can optionally use locale to do the conversion.
A converter should in most cases be symmetric so chainingConverter.convertToPresentation(Object, Class, Locale)andConverter.convertToModel(Object, Class, Locale)should return the original value.- Parameters:
value- The value to convert, compatible with the target type. Can be nulltargetType- The requested type of the return valuelocale- The locale to use for conversion. Can be null.- Returns:
- The converted value compatible with the source type
- Throws:
Converter.ConversionException- If the value could not be converted
-
getModelType
public Class<BigDecimal> getModelType()
Deprecated.Description copied from interface:ConverterThe source type of the converter. Values of this type can be passed toConverter.convertToPresentation(Object, Class, Locale).- Returns:
- The source type
-
-