I want to represent dates with associated zones, but I didn't found any type to represent the date in Noda time (something similar to the LocalDate
, but with zone information, so it would by nice to have a ZonedDate
structure). How can I store date for specific ZonedDateTime
?
For example:
I have a structure of type ZonedDateTime
= 2015/11/11 1:30 AM and I want to store a date part (2015/11/11) of this time with TimeZone from ZonedDateTime
.