scala-time icon indicating copy to clipboard operation
scala-time copied to clipboard

Added Rich Tuples Set making it easier to convert Tuples into DateTime objects.

Open dhinojosa opened this issue 13 years ago • 0 comments

Added Rich Tuples Set making it easier to convert Tuples into DateTime objects.

e.g. (2010, 12, 13).toJodaDateMidnight e.g. (2010, 12, 13, 19, 10, 13, 120).toJodaDateTime.getDayOfMonth e.g. (2010, 12, 13, 19, 10, 13, 120, "US/Central").toJodaDateTime e.g. (2010, 12, 13, 19, 10, 13, 120, DateTimeZone.forID("US/Central")).toJodaDateTime

This is purely to save time to do a tuple -> DateTime conversion and to make code cleaner and friendly.

Also offered toSqlDate and toJavaDate methods to quickly convert Tuples to javax.sql.Date and java.util.Date in case interoperability with Java is required.

Note: Turned on junit dependency to run tests.

dhinojosa avatar Mar 29 '11 02:03 dhinojosa