Skip to content

Instantly share code, notes, and snippets.

@AkshayChordiya
Created December 9, 2017 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AkshayChordiya/7ea8e277049c09ce71c702282946720e to your computer and use it in GitHub Desktop.
Save AkshayChordiya/7ea8e277049c09ce71c702282946720e to your computer and use it in GitHub Desktop.
Date Converter for Room
class DateConverters {
@TypeConverter
fun fromTimestamp(value: Long?): Date? {
return if (value == null) null else Date(value)
}
@TypeConverter
fun dateToTimestamp(date: Date?): Long? {
return date?.time
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment