com.sun.jimi.util
Interface Range

All Known Implementing Classes:
IntegerRange

public abstract interface Range

Provides an easy means of specifying an arbitrary range of values.


Method Summary
 java.lang.Object getGreatestValue()
           
 java.lang.Object getLeastValue()
           
 boolean isContinuous()
          A continuous range allows us to optimize by skipping the check to ensure that the value is in range.
 boolean isInRange(java.lang.Object testCase)
           
 

Method Detail

getLeastValue

public java.lang.Object getLeastValue()

getGreatestValue

public java.lang.Object getGreatestValue()

isContinuous

public boolean isContinuous()
A continuous range allows us to optimize by skipping the check to ensure that the value is in range.

isInRange

public boolean isInRange(java.lang.Object testCase)