Class YearMonthComponentsConverter
- java.lang.Object
-
- org.datanucleus.store.types.converters.YearMonthComponentsConverter
-
- All Implemented Interfaces:
Serializable,MultiColumnConverter,TypeConverter<java.time.YearMonth,int[]>
public class YearMonthComponentsConverter extends Object implements TypeConverter<java.time.YearMonth,int[]>, MultiColumnConverter
Class to handle the conversion between java.time.YearMonth and int[] (the year and the month).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description YearMonthComponentsConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class[]getDatastoreColumnTypes()Accessor for the java types of the datastore columns.int[]toDatastoreType(java.time.YearMonth ym)Method to convert the passed member value to the datastore type.java.time.YearMonthtoMemberType(int[] vals)Method to convert the passed datastore value to the member type.
-
-
-
Method Detail
-
toMemberType
public java.time.YearMonth toMemberType(int[] vals)
Description copied from interface:TypeConverterMethod to convert the passed datastore value to the member type.- Specified by:
toMemberTypein interfaceTypeConverter<java.time.YearMonth,int[]>- Parameters:
vals- Value from the datastore- Returns:
- Value for the member
-
toDatastoreType
public int[] toDatastoreType(java.time.YearMonth ym)
Description copied from interface:TypeConverterMethod to convert the passed member value to the datastore type.- Specified by:
toDatastoreTypein interfaceTypeConverter<java.time.YearMonth,int[]>- Parameters:
ym- Value from the member- Returns:
- Value for the datastore
-
getDatastoreColumnTypes
public Class[] getDatastoreColumnTypes()
Description copied from interface:MultiColumnConverterAccessor for the java types of the datastore columns.- Specified by:
getDatastoreColumnTypesin interfaceMultiColumnConverter- Returns:
- The java types of the columns
-
-