Class YearIntegerConverter

java.lang.Object
org.datanucleus.store.types.converters.YearIntegerConverter
All Implemented Interfaces:
Serializable, TypeConverter<Year,Integer>

public class YearIntegerConverter extends Object implements TypeConverter<Year,Integer>
Class to handle the conversion between java.time.Year and Integer.
See Also:
  • Field Details

  • Constructor Details

    • YearIntegerConverter

      public YearIntegerConverter()
  • Method Details

    • toMemberType

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

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