what is the joda-time equivalent of below methods in JDK.
- TimeZone.getOffset()
- TimeZone.getRawOffset()
- TimeZone.inDaylightTime()
- TimeZone.useDaylightTime()
- TimeZone.getDSTSavings()
My main idea is to store the below in database as suggested by most of the SO posts
- time in UTC = joda Instant
- time zone offset = which is the equivalent in joda?
- dst offset = which is the equivalent in joda?
Also should i store the RawOffset or the DST adjusted offset?