Package com.vaadin.flow.data.converter
Class StringToDoubleConverter
- java.lang.Object
-
- com.vaadin.flow.data.converter.AbstractStringToNumberConverter<Double>
-
- com.vaadin.flow.data.converter.StringToDoubleConverter
-
- All Implemented Interfaces:
Converter<String,Double>
,Serializable
public class StringToDoubleConverter extends AbstractStringToNumberConverter<Double>
A converter that converts fromString
toDouble
and back. Uses the given locale and aNumberFormat
instance for formatting and parsing.Leading and trailing white spaces are ignored when converting from a String.
Override and overwrite
AbstractStringToNumberConverter.getFormat(Locale)
to use a different format.- Since:
- 1.0
- Author:
- Vaadin Ltd
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StringToDoubleConverter(ErrorMessageProvider errorMessageProvider)
Creates a new converter instance with the given error message provider.StringToDoubleConverter(Double emptyValue, ErrorMessageProvider errorMessageProvider)
Creates a new converter instance with the given presentation value for empty string and error message provider.StringToDoubleConverter(Double emptyValue, String errorMessage)
Creates a new converter instance with the given presentation value for empty string and error message.StringToDoubleConverter(String errorMessage)
Creates a new converter instance with the given error message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Result<Double>
convertToModel(String value, ValueContext context)
Converts the given value from presentation type to model type.-
Methods inherited from class com.vaadin.flow.data.converter.AbstractStringToNumberConverter
convertToNumber, convertToPresentation, getErrorMessage, getFormat
-
-
-
-
Constructor Detail
-
StringToDoubleConverter
public StringToDoubleConverter(String errorMessage)
Creates a new converter instance with the given error message. Empty strings are converted tonull
.- Parameters:
errorMessage
- the error message to use if conversion fails
-
StringToDoubleConverter
public StringToDoubleConverter(Double emptyValue, String errorMessage)
Creates a new converter instance with the given presentation value for empty string and error message.- Parameters:
emptyValue
- the presentation value to return when converting an empty string, may benull
errorMessage
- the error message to use if conversion fails
-
StringToDoubleConverter
public StringToDoubleConverter(ErrorMessageProvider errorMessageProvider)
Creates a new converter instance with the given error message provider. Empty strings are converted tonull
.- Parameters:
errorMessageProvider
- the error message provider to use if conversion fails
-
StringToDoubleConverter
public StringToDoubleConverter(Double emptyValue, ErrorMessageProvider errorMessageProvider)
Creates a new converter instance with the given presentation value for empty string and error message provider.- Parameters:
emptyValue
- the presentation value to return when converting an empty string, may benull
errorMessageProvider
- the error message provider to use if conversion fails
-
-
Method Detail
-
convertToModel
public Result<Double> convertToModel(String value, ValueContext context)
Description copied from interface:Converter
Converts the given value from presentation type to model type.A converter can optionally use locale to do the conversion.
- Parameters:
value
- The value to convert. Can be nullcontext
- The value context for the conversion.- Returns:
- The converted value compatible with the source type
-
-