Package | Description |
---|---|
org.apache.commons.lang.math |
Extends
java.math for business mathematical classes. |
Modifier and Type | Class and Description |
---|---|
class |
DoubleRange
DoubleRange represents an inclusive range of double s. |
class |
FloatRange
FloatRange represents an inclusive range of float s. |
class |
IntRange
IntRange represents an inclusive range of int s. |
class |
LongRange
LongRange represents an inclusive range of long s. |
class |
NumberRange
NumberRange represents an inclusive range of
Number objects of the same type. |
Modifier and Type | Method and Description |
---|---|
boolean |
FloatRange.containsRange(Range range)
Tests whether the specified range occurs entirely within this range
using
float comparison. |
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 |
DoubleRange.containsRange(Range range)
Tests whether the specified range occurs entirely within this range
using
double comparison. |
boolean |
IntRange.containsRange(Range range)
Tests whether the specified range occurs entirely within this range
using
int comparison. |
boolean |
FloatRange.overlapsRange(Range range)
Tests whether the specified range overlaps with this range
using
float 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 |
DoubleRange.overlapsRange(Range range)
Tests whether the specified range overlaps with this range
using
double comparison. |
boolean |
IntRange.overlapsRange(Range range)
Tests whether the specified range overlaps with this range
using
int comparison. |
Copyright © 2001-2012 Apache Software Foundation. All Rights Reserved.