Package groovy.time
Class TimeDuration
- java.lang.Object
- 
- groovy.time.BaseDuration
- 
- groovy.time.Duration
- 
- groovy.time.TimeDuration
 
 
 
- 
- All Implemented Interfaces:
- java.lang.Comparable<BaseDuration>
 
 public 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 independent 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. 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from class groovy.time.BaseDurationBaseDuration.From
 
- 
 - 
Constructor SummaryConstructors Constructor Description TimeDuration(int hours, int minutes, int seconds, int millis)TimeDuration(int days, int hours, int minutes, int seconds, int millis)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.DategetAgo()BaseDuration.FromgetFrom()DatumDependentDurationminus(DatumDependentDuration rhs)Durationminus(Duration rhs)DatumDependentDurationplus(DatumDependentDuration rhs)Durationplus(Duration rhs)- 
Methods inherited from class groovy.time.Durationminus, minus, plus, toMilliseconds
 - 
Methods inherited from class groovy.time.BaseDurationcompareTo, getDays, getHours, getMillis, getMinutes, getMonths, getSeconds, getYears, plus, toString
 
- 
 
- 
- 
- 
Method Detail- 
pluspublic DatumDependentDuration plus(DatumDependentDuration rhs) 
 - 
minuspublic DatumDependentDuration minus(DatumDependentDuration rhs) 
 - 
getFrompublic BaseDuration.From getFrom() 
 
- 
 
-