|
ProgramixGenericLib v5.0.1 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use IntegerRange | |
|---|---|
| com.programix.gui.text | Customized JTextField's for integer, decimal (money), and date input and other graphical text utilities. |
| com.programix.math | Various containers and tools for dealing with numbers and math (including parsing and formatting). |
| Uses of IntegerRange in com.programix.gui.text |
|---|
| Methods in com.programix.gui.text that return IntegerRange | |
|---|---|
IntegerRange |
IntegerField.getValidRange()
Returns the current range of valid values. |
IntegerRange |
IntegerField.RangePair.getValidRange()
Returns the currently valid range of values that can be entered into both fields—this is the entire range. |
IntegerRange |
IntegerField.RangePair.getValues()
Returns the current values of both the 'lo' and 'hi' fields as a range. |
| Methods in com.programix.gui.text with parameters of type IntegerRange | |
|---|---|
void |
IntegerField.setValidRange(IntegerRange newRange)
Sets the allowable range of values. |
void |
IntegerField.RangePair.setValues(IntegerRange valueRange)
Allows both the values to be set together as this might be necessary to allow them to both successfully be set. |
| Constructors in com.programix.gui.text with parameters of type IntegerRange | |
|---|---|
IntegerField.RangePair(IntegerRange validRange)
|
|
IntegerField(IntegerRange validRange)
|
|
IntegerField(IntegerRange validRange,
int initialValue)
|
|
IntegerField(IntegerRange validRange,
Integer initialValue)
|
|
IntegerField(IntegerRange validRange,
String initialValue)
|
|
IntegerField(IntegerRange validRange,
Value initialValue)
|
|
| Uses of IntegerRange in com.programix.math |
|---|
| Fields in com.programix.math declared as IntegerRange | |
|---|---|
static IntegerRange |
IntegerRange.BOTH_OPEN
This IntegerRange has both an undefined start and an undefined end. |
static IntegerRange |
IntegerRange.MIN_TO_MAX_INT
This IntegerRange runs from Integer.MIN_VALUE
to Integer.MAX_VALUE. |
static IntegerRange |
IntegerRange.NEGATIVE
This IntegerRange covers all negative values with an undefined start and an end of "-1". |
static IntegerRange |
IntegerRange.NON_NEGATIVE
This IntegerRange covers all non-negative values with a start of "0" and an undefined end. |
static IntegerRange |
IntegerRange.NON_POSITIVE
This IntegerRange covers all non-positive values with an undefined start and an end of "0". |
static IntegerRange |
IntegerRange.POSITIVE
This IntegerRange covers all positive values with a start of "1" and an undefined end. |
| Fields in com.programix.math with type parameters of type IntegerRange | |
|---|---|
static Comparator<IntegerRange> |
IntegerRange.HIGHEST_FIRST_COMPARATOR
Compares two ranges placing ranges that are considered "highest" first. |
static Comparator<IntegerRange> |
IntegerRange.LOWEST_FIRST_COMPARATOR
Compares two ranges placing ranges that are considered "lowest" first. |
| Methods in com.programix.math that return IntegerRange | |
|---|---|
static IntegerRange |
IntegerRange.createWithOpenEnd(Integer start)
Creates a new instance with an open end and the specified start value. |
static IntegerRange |
IntegerRange.createWithOpenStart(Integer end)
Creates a new instance with an open start and the specified end value. |
IntegerRange |
IntegerRange.setEnd(int newEnd)
Returns a new instance with the specified newEnd value and this instance's start value. |
IntegerRange |
IntegerRange.setEnd(Integer newEnd)
Returns a new instance with the specified newEnd value and this instance's start value. |
IntegerRange |
IntegerRange.setEnd(String newEnd)
Returns a new instance with the specified newEnd value and this instance's start value. |
IntegerRange |
IntegerRange.setEnd(Value newEnd)
Returns a new instance with the specified newEnd value and this instance's start value. |
IntegerRange |
IntegerRange.setStart(int newStart)
Returns a new instance with the specified newStart value and this instance's end value. |
IntegerRange |
IntegerRange.setStart(Integer newStart)
Returns a new instance with the specified newStart value and this instance's end value. |
IntegerRange |
IntegerRange.setStart(String newStart)
Returns a new instance with the specified newStart value and this instance's end value. |
IntegerRange |
IntegerRange.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 IntegerRange | |
|---|---|
int |
IntegerRange.compareTo(IntegerRange otherRange)
Compares this instance to otherRange as defined by LOWEST_FIRST_COMPARATOR. |
boolean |
IntegerRange.equals(IntegerRange otherInteger)
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 | |||||||||