com.vaadin.flow.data.converter.
Class StringToIntegerConverter
- java.lang.Object
-
- com.vaadin.flow.data.converter.AbstractStringToNumberConverter<Integer>
-
- com.vaadin.flow.data.converter.StringToIntegerConverter
-
All Implemented Interfaces:
public class StringToIntegerConverter extends AbstractStringToNumberConverter<Integer>
A converter that converts from
String
toInteger
and back. Uses the given locale and aNumberFormat
instance for formatting and parsing.Override and overwrite
getFormat(Locale)
to use a different format.Since:
1.0
Author:
Vaadin Ltd
See Also:
-
-
Constructor Summary
Constructors Constructor Description StringToIntegerConverter(ErrorMessageProvider errorMessageProvider)
Creates a new converter instance with the given error message provider.
StringToIntegerConverter(Integer emptyValue, ErrorMessageProvider errorMessageProvider)
Creates a new converter instance with the given presentation value for empty string and error message provider.
StringToIntegerConverter(Integer emptyValue, String errorMessage)
Creates a new converter instance with the given presentation value for empty string and error message.
StringToIntegerConverter(String errorMessage)
Creates a new converter instance with the given error message.
-
Method Summary
All Methods Modifier and Type Method Description Result<Integer>
convertToModel(String value, ValueContext context)
Converts the given value from presentation type to model type.
protected NumberFormat
getFormat(Locale locale)
Returns the format used by
Converter.convertToPresentation(Object, ValueContext)
andconvertToModel(String, ValueContext)
.-
Methods inherited from class com.vaadin.flow.data.converter.AbstractStringToNumberConverter
convertToNumber, convertToPresentation, getErrorMessage
-
-
-
-
Constructor Detail
-
StringToIntegerConverter
public StringToIntegerConverter(String errorMessage)
Creates a new converter instance with the given error message. Empty strings are converted to
null
.Parameters:
errorMessage
- the error message to use if conversion fails
-
StringToIntegerConverter
public StringToIntegerConverter(Integer 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
-
StringToIntegerConverter
public StringToIntegerConverter(ErrorMessageProvider errorMessageProvider)
Creates a new converter instance with the given error message provider. Empty strings are converted to
null
.Parameters:
errorMessageProvider
- the error message provider to use if conversion fails
-
StringToIntegerConverter
public StringToIntegerConverter(Integer 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
-
getFormat
protected NumberFormat getFormat(Locale locale)
Returns the format used by
Converter.convertToPresentation(Object, ValueContext)
andconvertToModel(String, ValueContext)
.Overrides:
getFormat
in classAbstractStringToNumberConverter<Integer>
Parameters:
locale
- The locale to useReturns:
A NumberFormat instance
-
convertToModel
public Result<Integer> 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
-
-