|
ProgramixGenericLib v5.0.1 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DecimalRange | |
|---|---|
| com.programix.math | Various containers and tools for dealing with numbers and math (including parsing and formatting). |
| Uses of DecimalRange in com.programix.math |
|---|
| Fields in com.programix.math declared as DecimalRange | |
|---|---|
static DecimalRange |
DecimalRange.BOTH_OPEN
This DecimalRange has both an undefined start and an undefined end. |
static DecimalRange |
DecimalRange.NON_NEGATIVE
This DecimalRange covers all non-negative values with a start of "0.0" and an undefined end. |
static DecimalRange |
DecimalRange.NON_POSITIVE
This DecimalRange covers all non-positive values with an undefined start and an end of "0.0". |
| Fields in com.programix.math with type parameters of type DecimalRange | |
|---|---|
static Comparator<DecimalRange> |
DecimalRange.HIGHEST_FIRST_COMPARATOR
Compares two ranges placing ranges that are considered "highest" first. |
static Comparator<DecimalRange> |
DecimalRange.LOWEST_FIRST_COMPARATOR
Compares two ranges placing ranges that are considered "lowest" first. |
| Methods in com.programix.math that return DecimalRange | |
|---|---|
static DecimalRange |
DecimalRange.createWithOpenEnd(BigDecimal start)
Creates a new instance with an open end and the specified start value. |
static DecimalRange |
DecimalRange.createWithOpenStart(BigDecimal end)
Creates a new instance with an open start and the specified end value. |
DecimalRange |
DecimalRange.setEnd(BigDecimal newEnd)
Returns a new instance with the specified newEnd value and this instance's start value. |
DecimalRange |
DecimalRange.setEnd(String newEnd)
Returns a new instance with the specified newEnd value and this instance's start value. |
DecimalRange |
DecimalRange.setEnd(Value newEnd)
Returns a new instance with the specified newEnd value and this instance's start value. |
DecimalRange |
DecimalRange.setStart(BigDecimal newStart)
Returns a new instance with the specified newStart value and this instance's end value. |
DecimalRange |
DecimalRange.setStart(String newStart)
Returns a new instance with the specified newStart value and this instance's end value. |
DecimalRange |
DecimalRange.setStart(Value newStart)
Returns a new instance with the specified newStart value and this instance's end value. |
| Methods in com.programix.math with parameters of type DecimalRange | |
|---|---|
int |
DecimalRange.compareTo(DecimalRange otherRange)
Compares this instance to otherRange as defined by LOWEST_FIRST_COMPARATOR. |
boolean |
DecimalRange.equals(DecimalRange otherBigDecimal)
Returns true if this instance's start and end values exactly match the start and end values of the passed instance. |
|
ProgramixGenericLib v5.0.1 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||