1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00

modified javadoc in core.util.Time

This commit is contained in:
oblonski 2014-05-15 12:58:24 +02:00
parent 8066a353d9
commit ce2abc8c62

View file

@ -7,7 +7,7 @@ public class Time {
* *
* <p>If you add PM or AM to timeString, it considers english-time, otherwise not. * <p>If you add PM or AM to timeString, it considers english-time, otherwise not.
* *
* <p>timeString must be hour:min:sec * <p>timeString can be 6AM, 06AM, 6 am, 6:01AM, 6:1 pM, 6:12:1 pm, 6:12:01 am, 06:12:01 Pm etc. - but not more precise than seconds.
* <p>example: 12 AM returns 12*3600. sec * <p>example: 12 AM returns 12*3600. sec
* 6:30 AM --> 6*3600. + 30*60. * 6:30 AM --> 6*3600. + 30*60.
* 0:30:20 AM --> 30*3600. + 20. * 0:30:20 AM --> 30*3600. + 20.