groovy.time
Class TimeDuration
java.lang.Object
groovy.time.BaseDuration
groovy.time.Duration
groovy.time.TimeDuration
class TimeDuration
extends Duration
TimeDuration represents time periods expressed in units of hours, minutes, seconds and milliseconds.
Whilst we can't say how long a month is without knowing the year and the name of the month,
we know how long a second is independant of the date.
This is not 100% true for minutes.
Minutes can be 59, 60 or 61 seconds long (due to leap seconds)
If you ask Duration to convert itself to milliseconds then it will work on the basis of 60 seconds in a minute.
If you add or subtract it from a date it will take leap seconds into account
- author:
- John Wilson tug@wilson.co.uk
Constructor Summary |
TimeDuration(int hours, int minutes, int seconds, int millis)
|
TimeDuration(int days, int hours, int minutes, int seconds, int millis)
|
Methods inherited from class BaseDuration
|
getAgo, getDays, getFrom, getHours, getMillis, getMinutes, getMonths, getSeconds, getYears, plus, toMilliseconds, toString |
Methods inherited from class Object
|
wait, wait, wait, hashCode, getClass, equals, toString, notify, notifyAll |
TimeDuration
public TimeDuration(int hours, int minutes, int seconds, int millis)
-
TimeDuration
public TimeDuration(int days, int hours, int minutes, int seconds, int millis)
-
getFrom
public From getFrom()
-
minus
public Duration minus(Duration rhs)
-
minus
public DatumDependentDuration minus(DatumDependentDuration rhs)
-
plus
public Duration plus(Duration rhs)
-
plus
public DatumDependentDuration plus(DatumDependentDuration rhs)
-
Copyright © 2003-2009 The Codehaus. All rights reserved.