Uses of Class
org.hackystat.utilities.time.period.Week

Packages that use Week
org.hackystat.utilities.time.interval Provides the Interval abstraction, which allows the user to specify time intervals at the grain-size of Days, Weeks, or Months. 
org.hackystat.utilities.time.period Provides abstractions for Days, Weeks, and Months. 
 

Uses of Week in org.hackystat.utilities.time.interval
 

Methods in org.hackystat.utilities.time.interval that return Week
 Week WeekInterval.getEndWeek()
          Gets end week.
 Week WeekInterval.getStartWeek()
          Gets start week.
 Week IntervalUtility.getWeek(java.lang.String weekString)
          Returns a Week instance given a week string.
 Week WeekIterator.next()
          Gets the next day.
 

Methods in org.hackystat.utilities.time.interval that return types with arguments of type Week
 java.util.Iterator<Week> WeekInterval.iterator()
          Gets the iterator over the week period.
 

Uses of Week in org.hackystat.utilities.time.period
 

Methods in org.hackystat.utilities.time.period that return Week
 Week Week.dec()
          Returns a new Week instance representing the previous Week.
 Week Month.getFirstWeekInMonth()
          Returns the Week instance associated with the first day in this Month.
 Week Month.getLastWeekInMonth()
          Returns the Week instance associated with the last Day of this Month.
 Week Week.inc()
          Returns a new Week instance representing the next Week.