|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object groovy.time.BaseDuration groovy.time.DatumDependentDuration
public class DatumDependentDuration extends BaseDuration
DatumDependentDuration represents durations whose length in milliseconds cannot be determined without knowing the datum point.
I don't know how many days in a year unless I know if it's a leap year or not. I don't know how many days in a month unless I know the name of the month (and if it's a leap year if the month is February)Field Summary |
---|
Fields inherited from class BaseDuration | |
---|---|
days, hours, millis, minutes, months, seconds, years |
Constructor Summary | |
DatumDependentDuration(int years, int months, int days, int hours, int minutes, int seconds, int millis)
|
Method Summary | |
---|---|
java.util.Date
|
getAgo()
|
From
|
getFrom()
|
int
|
getMonths()
|
int
|
getYears()
|
DatumDependentDuration
|
minus(DatumDependentDuration rhs)
|
DatumDependentDuration
|
minus(Duration rhs)
|
DatumDependentDuration
|
plus(DatumDependentDuration rhs)
|
DatumDependentDuration
|
plus(TimeDatumDependentDuration rhs)
|
DatumDependentDuration
|
plus(Duration rhs)
|
DatumDependentDuration
|
plus(TimeDuration rhs)
|
long
|
toMilliseconds()
@see groovy.time.BaseDuration#toMilliseconds() |
Methods inherited from class BaseDuration | |
---|---|
compareTo, getAgo, getDays, getFrom, getHours, getMillis, getMinutes, getMonths, getSeconds, getYears, plus, toMilliseconds, toString |
Methods inherited from class java.lang.Object | |
---|---|
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Constructor Detail |
---|
public DatumDependentDuration(int years, int months, int days, int hours, int minutes, int seconds, int millis)
Method Detail |
---|
public java.util.Date getAgo()
public From getFrom()
public int getMonths()
public int getYears()
public DatumDependentDuration minus(DatumDependentDuration rhs)
public DatumDependentDuration minus(Duration rhs)
public DatumDependentDuration plus(DatumDependentDuration rhs)
public DatumDependentDuration plus(TimeDatumDependentDuration rhs)
public DatumDependentDuration plus(Duration rhs)
public DatumDependentDuration plus(TimeDuration rhs)
public long toMilliseconds()
Groovy Documentation