Package | Description |
---|---|
org.apache.commons.lang.math |
Extends
java.math for business mathematical classes. |
Modifier and Type | Class | 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 | Description |
---|---|---|
boolean |
DoubleRange.containsRange(Range range) |
Tests whether the specified range occurs entirely within this range
using
double comparison. |
boolean |
FloatRange.containsRange(Range range) |
Tests whether the specified range occurs entirely within this range
using
float comparison. |
boolean |
IntRange.containsRange(Range range) |
Tests whether the specified range occurs entirely within this range
using
int comparison. |
boolean |
LongRange.containsRange(Range range) |
Tests whether the specified range occurs entirely within this range
using
long comparison. |
boolean |
Range.containsRange(Range range) |
Tests whether the specified range occurs entirely within this range.
|
boolean |
DoubleRange.overlapsRange(Range range) |
Tests whether the specified range overlaps with this range
using
double comparison. |
boolean |
FloatRange.overlapsRange(Range range) |
Tests whether the specified range overlaps with this range
using
float comparison. |
boolean |
IntRange.overlapsRange(Range range) |
Tests whether the specified range overlaps with this range
using
int comparison. |
boolean |
LongRange.overlapsRange(Range range) |
Tests whether the specified range overlaps with this range
using
long comparison. |
boolean |
Range.overlapsRange(Range range) |
Tests whether the specified range overlaps with this range.
|
Copyright © 2001-2018 - Apache Software Foundation