Uses of Interface
org.joda.time.ReadableInterval

Packages that use ReadableInterval
org.joda.time Provides support for dates, times, time zones, durations, intervals, and partials. 
org.joda.time.base Implementation package providing abstract and base time classes. 
 

Uses of ReadableInterval in org.joda.time
 

Subinterfaces of ReadableInterval in org.joda.time
 interface ReadWritableInterval
          Writable interface for an interval.
 

Classes in org.joda.time that implement ReadableInterval
 class Interval
          Interval is the standard implementation of an immutable time interval.
 class MutableInterval
          MutableInterval is the standard implementation of a mutable time interval.
 

Methods in org.joda.time that return ReadableInterval
static ReadableInterval DateTimeUtils.getReadableInterval(ReadableInterval interval)
          Gets the interval handling null.
 

Methods in org.joda.time with parameters of type ReadableInterval
 Interval Interval.overlap(ReadableInterval interval)
          Gets the overlap where this interval and that specified.
 Interval Interval.gap(ReadableInterval interval)
          Gets the gap between this interval and that specified.
 boolean Interval.abuts(ReadableInterval interval)
          Does this interval abut with the interval specified.
 boolean ReadableInterval.contains(ReadableInterval interval)
          Does this time interval contain the specified time interval completely.
 boolean ReadableInterval.overlaps(ReadableInterval interval)
          Does this time interval overlap the specified time interval.
 boolean ReadableInterval.isAfter(ReadableInterval interval)
          Is this time interval entirely after the specified interval.
 boolean ReadableInterval.isBefore(ReadableInterval interval)
          Is this time interval entirely before the specified interval.
 void MutablePeriod.setPeriod(ReadableInterval interval)
          Sets all the fields in one go from an interval using the ISO chronology and dividing the fields using the period type.
 void MutablePeriod.add(ReadableInterval interval)
          Adds an interval to this one by dividing the interval into fields and calling MutablePeriod.add(ReadablePeriod).
 void ReadWritablePeriod.setPeriod(ReadableInterval interval)
          Sets all the fields in one go from an interval dividing the fields using the period type.
 void ReadWritablePeriod.add(ReadableInterval interval)
          Adds an interval to this one by dividing the interval into fields and then adding each field in turn.
 void MutableInterval.setInterval(ReadableInterval interval)
          Sets this interval to be the same as another.
 void ReadWritableInterval.setInterval(ReadableInterval interval)
          Sets this interval to be the same as another.
static Chronology DateTimeUtils.getIntervalChronology(ReadableInterval interval)
          Gets the chronology from the specified interval object handling null.
static ReadableInterval DateTimeUtils.getReadableInterval(ReadableInterval interval)
          Gets the interval handling null.
 

Uses of ReadableInterval in org.joda.time.base
 

Classes in org.joda.time.base that implement ReadableInterval
 class AbstractInterval
          AbstractInterval provides the common behaviour for time intervals.
 class BaseInterval
          BaseInterval is an abstract implementation of ReadableInterval that stores data in two long millisecond fields.
 

Methods in org.joda.time.base with parameters of type ReadableInterval
 boolean AbstractInterval.contains(ReadableInterval interval)
          Does this time interval contain the specified time interval completely.
 boolean AbstractInterval.overlaps(ReadableInterval interval)
          Does this time interval overlap the specified time interval.
 boolean AbstractInterval.isBefore(ReadableInterval interval)
          Is this time interval entirely before the specified instant.
 boolean AbstractInterval.isAfter(ReadableInterval interval)
          Is this time interval entirely after the specified interval.
 



Copyright © 2002-2008 Joda.org. All Rights Reserved.