Uses of Class
com.jstatcom.model.NumberRangeTypes

Packages that use NumberRangeTypes
com.jstatcom.model Data model and Symbol Management systems. 
 

Uses of NumberRangeTypes in com.jstatcom.model
 

Fields in com.jstatcom.model declared as NumberRangeTypes
static NumberRangeTypes NumberRangeTypes.CLOSED
          Type for closed interval.
static NumberRangeTypes NumberRangeTypes.LEFT_OPEN
          Type for left-open interval.
static NumberRangeTypes NumberRangeTypes.OPEN
          Type for open interval.
 NumberRangeTypes NumberRange.rangeType
          The type of this range, which is either OPEN, CLOSED, LEFT_OPEN or RIGHT_OPEN.
static NumberRangeTypes NumberRangeTypes.RIGHT_OPEN
          Type for right-open interval.
 

Methods in com.jstatcom.model that return NumberRangeTypes
static NumberRangeTypes NumberRangeTypes.getTypeForBounds(boolean leftOpen, boolean rightOpen)
          Gets the appropriate range type according to the specification of the bounds openess.
 NumberRangeTypes NumberRange.type()
          Gets the interval type for this range.
 

Constructors in com.jstatcom.model with parameters of type NumberRangeTypes
NumberRange(double lowerBoundNew, double upperBoundNew, NumberRangeTypes rangeType)
          Creates a range according to the given bounds and the type.