Methods Summary |
---|
public int | getCount()Get the count constraint.
return count;
|
public java.util.Date | getEndDate()Get the end date constraint.
if (endDate == -1)
return null;
return new Date(endDate);
|
public long | getInterval()Get the Interval constraint.
return interval;
|
public java.util.Date | getStartDate()Get the start date constraint.
if (startDate == -1)
return null;
return new Date(startDate);
|