You're viewing an older version of Vaadin JavaDoc. Please see version 24.7.0 for the latest.
com.vaadin.flow.data.converter.

Class DateToSqlDateConverter

  • All Implemented Interfaces:

    Converter<Date,​Date>, Serializable

    public class DateToSqlDateConverter
    extends Object
    implements Converter<Date,​Date>

    Converter for handling conversion between Date and Date. This is used when a PopupDateField or InlineDateField is connected to a java.sql.Date property. Note that information (time information) is lost when converting from Date to Date.

    Since:

    1.0

    Author:

    Vaadin Ltd

    See Also:

    Serialized Form

    • Constructor Detail

      • DateToSqlDateConverter

        public DateToSqlDateConverter()
    • Method Detail

      • convertToModel

        public Result<Date> convertToModel​(Date 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.

        Specified by:

        convertToModel in interface Converter<Date,​Date>

        Parameters:

        value - The value to convert. Can be null

        context - The value context for the conversion.

        Returns:

        The converted value compatible with the source type

      • convertToPresentation

        public Date convertToPresentation​(Date value,
                                          ValueContext context)

        Description copied from interface: Converter

        Converts the given value from model type to presentation type.

        A converter can optionally use locale to do the conversion.

        Specified by:

        convertToPresentation in interface Converter<Date,​Date>

        Parameters:

        value - The value to convert. Can be null

        context - The value context for the conversion.

        Returns:

        The converted value compatible with the source type