Class MonthDaySqlDateConverter

java.lang.Object
org.datanucleus.store.types.converters.MonthDaySqlDateConverter
All Implemented Interfaces:
Serializable, TypeConverter<MonthDay,Date>

public class MonthDaySqlDateConverter extends Object implements TypeConverter<MonthDay,Date>
Class to handle the conversion between java.time.MonthDay and java.sql.Date.
See Also:
  • Field Details

  • Constructor Details

    • MonthDaySqlDateConverter

      public MonthDaySqlDateConverter()
  • Method Details

    • toMemberType

      public MonthDay toMemberType(Date date)
      Description copied from interface: TypeConverter
      Method to convert the passed datastore value to the member type.
      Specified by:
      toMemberType in interface TypeConverter<MonthDay,Date>
      Parameters:
      date - Value from the datastore
      Returns:
      Value for the member
    • toDatastoreType

      public Date toDatastoreType(MonthDay md)
      Description copied from interface: TypeConverter
      Method to convert the passed member value to the datastore type.
      Specified by:
      toDatastoreType in interface TypeConverter<MonthDay,Date>
      Parameters:
      md - Value from the member
      Returns:
      Value for the datastore