Uses of Class
fleXplorer.Types.Interval

Packages that use Interval
fleXplorer.Comparators   
fleXplorer.Types   
 

Uses of Interval in fleXplorer.Comparators
 

Methods in fleXplorer.Comparators with parameters of type Interval
 PartialComparison PartialComparable.compareTo(Interval<Type> obj)
          Compares this object with the specified object for order.
 

Uses of Interval in fleXplorer.Types
 

Methods in fleXplorer.Types that return Interval
 Interval<Type> Interval.closed(Type lower, Type upper)
          Returns an Interval with specified limits which are closed.
 Interval<Type> Interval.emptyOfSameType()
          Returns an empty Interval.
 Interval<Type> Interval.gap(Interval<Type> other)
          Returns an Interval that is the gap of two Intervals.
 Interval<Type> IntervalType.getValue()
          Returns the value as interval.
 Interval<Type> Interval.intersect(Interval<Type> other)
          Returns the intersect of two Intervals.
 Interval<Type> Interval.newOfSameType(Type lower, boolean isLowerClosed, Type upper, boolean isUpperClosed)
          Returns a new Interval with specified limits and defines if those limits are closed or open.
 Interval<Type> Interval.open(Type lower, Type upper)
          Returns an Interval with specified limits which are open.
 Interval<Type> Interval.over(Type lower, boolean lowerIncluded, Type upper, boolean upperIncluded)
          Returns an Interval with specified limits and defines if those limits are closed or open.
 

Methods in fleXplorer.Types that return types with arguments of type Interval
 java.util.List<Interval<Type>> Interval.complementRelativeTo(Interval<Type> other)
          Returns an Interval that includes the left and right complement of this Interval relative to an other.
 

Methods in fleXplorer.Types with parameters of type Interval
 PartialComparison Interval.compareTo(Interval<Type> obj)
          Compares this object with the specified object for order.
 java.util.List<Interval<Type>> Interval.complementRelativeTo(Interval<Type> other)
          Returns an Interval that includes the left and right complement of this Interval relative to an other.
 boolean Interval.covers(Interval<Type> other)
          Checks if an Interval covers an other Interval.
 boolean Interval.equals(Interval<Type> other)
          Indicates whether some other Interval is "equal to" this one.
 Interval<Type> Interval.gap(Interval<Type> other)
          Returns an Interval that is the gap of two Intervals.
 Interval<Type> Interval.intersect(Interval<Type> other)
          Returns the intersect of two Intervals.
 boolean Interval.intersects(Interval<Type> other)
          Checks if two Intervals intersected.
 

Constructors in fleXplorer.Types with parameters of type Interval
IntervalType(Interval<Type> value)
          Construct a new Interval value.