Uses of Class
org.apache.commons.lang.math.Range

Packages that use Range
org.apache.commons.lang.math Extends java.math for business mathematical classes. 
 

Uses of Range in org.apache.commons.lang.math
 

Subclasses of Range in org.apache.commons.lang.math
 class DoubleRange
          DoubleRange represents an inclusive range of doubles.
 class FloatRange
          FloatRange represents an inclusive range of floats.
 class IntRange
          IntRange represents an inclusive range of ints.
 class LongRange
          LongRange represents an inclusive range of longs.
 class NumberRange
          NumberRange represents an inclusive range of Number objects of the same type.
 

Methods in org.apache.commons.lang.math with parameters of type Range
 boolean Range.containsRange(Range range)
          Tests whether the specified range occurs entirely within this range.
 boolean LongRange.containsRange(Range range)
          Tests whether the specified range occurs entirely within this range using long comparison.
 boolean IntRange.containsRange(Range range)
          Tests whether the specified range occurs entirely within this range using int comparison.
 boolean FloatRange.containsRange(Range range)
          Tests whether the specified range occurs entirely within this range using float comparison.
 boolean DoubleRange.containsRange(Range range)
          Tests whether the specified range occurs entirely within this range using double comparison.
 boolean Range.overlapsRange(Range range)
          Tests whether the specified range overlaps with this range.
 boolean LongRange.overlapsRange(Range range)
          Tests whether the specified range overlaps with this range using long comparison.
 boolean IntRange.overlapsRange(Range range)
          Tests whether the specified range overlaps with this range using int comparison.
 boolean FloatRange.overlapsRange(Range range)
          Tests whether the specified range overlaps with this range using float comparison.
 boolean DoubleRange.overlapsRange(Range range)
          Tests whether the specified range overlaps with this range using double comparison.
 



Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.