Uses of Class
orc.lib.state.Interval

Packages that use Interval
orc.lib.state   
 

Uses of Interval in orc.lib.state
 

Methods in orc.lib.state that return Interval
 Interval<T> Interval.intersect(Interval<T> that)
           
 Interval<T> Interval.union(Interval<T> that)
           
 

Methods in orc.lib.state that return types with arguments of type Interval
 java.util.Iterator<Interval<T>> Intervals.iterator()
           
 

Methods in orc.lib.state with parameters of type Interval
 int Interval.compareTo(Interval<T> that)
          Returns 0 if the intervals overlap.
 boolean Interval.contiguous(Interval<T> that)
           
 Interval<T> Interval.intersect(Interval<T> that)
           
 boolean Interval.intersects(Interval<T> that)
           
 Intervals<T> Intervals.union(Interval<T> interval)
          This is most efficient when the interval goes at the front of the set.
 Interval<T> Interval.union(Interval<T> that)
           
 

Constructors in orc.lib.state with parameters of type Interval
Intervals(Interval<T> range)