com.vaadin.data.util.converter.
Class StringToIntegerConverter
- java.lang.Object
-
- com.vaadin.data.util.converter.AbstractStringToNumberConverter<Integer>
-
- com.vaadin.data.util.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:
7.0
Author:
Vaadin Ltd
See Also:
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.vaadin.data.util.converter.Converter
Converter.ConversionException
-
-
Constructor Summary
Constructors Constructor and Description StringToIntegerConverter()
-
Method Summary
All Methods Modifier and Type Method and Description Integer
convertToModel(String value, Class<? extends Integer> targetType, Locale locale)
Converts the given value from target type to source type.
protected NumberFormat
getFormat(Locale locale)
Returns the format used by
#convertToPresentation(Integer, Class, Locale)
andconvertToModel(String, Class, Locale)
Class<Integer>
getModelType()
The source type of the converter.
-
Methods inherited from class com.vaadin.data.util.converter.AbstractStringToNumberConverter
convertToNumber, convertToPresentation, getPresentationType
-
-
-
-
Method Detail
-
getFormat
protected NumberFormat getFormat(Locale locale)
Returns the format used by
#convertToPresentation(Integer, Class, Locale)
andconvertToModel(String, Class, Locale)
Overrides:
getFormat
in classAbstractStringToNumberConverter<Integer>
Parameters:
locale
- The locale to useReturns:
A NumberFormat instance
-
convertToModel
public Integer convertToModel(String value, Class<? extends Integer> targetType, Locale locale) throws Converter.ConversionException
Description copied from interface:
Converter
Converts 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<Integer> getModelType()
Description copied from interface:
Converter
The source type of the converter. Values of this type can be passed to
Converter.convertToPresentation(Object, Class, Locale)
.Returns:
The source type
-
-