Package com.vaadin.flow.data.converter
Class LocalDateToDateConverter
- java.lang.Object
-
- com.vaadin.flow.data.converter.LocalDateToDateConverter
-
- All Implemented Interfaces:
Converter<LocalDate,Date>,Serializable
public class LocalDateToDateConverter extends Object implements Converter<LocalDate,Date>
A converter that converts betweenLocalDateandDate.- Since:
- 1.0
- Author:
- Vaadin Ltd
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LocalDateToDateConverter()Creates a new converter using the system's default time zone.LocalDateToDateConverter(ZoneId zoneId)Creates a new converter using the given time zone.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Result<Date>convertToModel(LocalDate localDate, ValueContext context)Converts the given value from presentation type to model type.LocalDateconvertToPresentation(Date date, ValueContext context)Converts the given value from model type to presentation type.
-
-
-
Constructor Detail
-
LocalDateToDateConverter
public LocalDateToDateConverter(ZoneId zoneId)
Creates a new converter using the given time zone.- Parameters:
zoneId- the time zone id to use, notnull
-
LocalDateToDateConverter
public LocalDateToDateConverter()
Creates a new converter using the system's default time zone.- See Also:
ZoneId.systemDefault()
-
-
Method Detail
-
convertToModel
public Result<Date> convertToModel(LocalDate localDate, ValueContext context)
Description copied from interface:ConverterConverts the given value from presentation type to model type.A converter can optionally use locale to do the conversion.
- Specified by:
convertToModelin interfaceConverter<LocalDate,Date>- Parameters:
localDate- The value to convert. Can be nullcontext- The value context for the conversion.- Returns:
- The converted value compatible with the source type
-
convertToPresentation
public LocalDate convertToPresentation(Date date, ValueContext context)
Description copied from interface:ConverterConverts the given value from model type to presentation type.A converter can optionally use locale to do the conversion.
- Specified by:
convertToPresentationin interfaceConverter<LocalDate,Date>- Parameters:
date- The value to convert. Can be nullcontext- The value context for the conversion.- Returns:
- The converted value compatible with the source type
-
-