kevinmost
05/26/2016, 2:32 PMtimestamp
from Java would actually look more like what I proposed (because you'd end up with two overloaded methods, setTimestamp(java.util.Date)
and setTimestamp(long)
), but in Kotlin you end up with disparate ways to set (timestamp = myTimestampLong
or setTimestamp(myDate)
)