Inheritance diagram for kddml.Core.Scalar.RealRangeType:
Public Member Functions | |
RealRangeType (Comparable< Double > comparable, boolean is_min_included, Comparable< Double > comparable1, boolean is_max_included) | |
boolean | isMinIncluded () |
boolean | isMaxIncluded () |
Class | getElementClass () |
Comparable | getMinValue () |
Comparable | getMaxValue () |
byte | getType () |
boolean | checkValue (String value) |
boolean | contains (Comparable< Double > comparable) |
boolean | isEmpty () |
String | toString () |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003 - 2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Constructs an Real range given the minimum value and the maximum value. Whether the minimum value and the maximum value are considered inclusive is specified via the is_min_included and is_max_included variables. An unbounded range can be specified by passing in a null for either of the two values, in which case the Range is unbounded at one end, or for both, in which case the Range represents an all inclusive set. If null is passed in for either variable, the boolean variables have no effect.
|
|
Returns true if the minimum value is included within this Range. If the range is unbounded at this end, this method will return true.
|
|
Returns true if the maximum value is included within this Range. If the range is unbounded at this end, this method will return true.
|
|
Returns the Class of the elements of this Range.
Reimplemented from kddml.Core.Scalar.RangeType. |
|
Returns the minimum value of this Range. Returns null if the Range is unbounded at this end.
|
|
Returns the maximum value of this Range. Returns null if the Range is unbounded at this end.
|
|
Returns the type related to this class as value of KDDMLScalarTypeEnum.
Implements kddml.Core.Scalar.KDDMLScalarType. |
|
Checks if the input value have the right type. Input value is given as java.lang.String. Returns true if the type is correct; returns false otherwise.
Implements kddml.Core.Scalar.RangeType. |
|
Returns true if the specified value is within this Range, i.e. is either equal to or greater than the minimum value of this Range and is either lesser than or equal to the maximum value of this Range.
|
|
Returns true if this Range is empty, i.e. if the minimum value is greater than the maximum value, if both are included, or if the minimum value is greater than equal to the maximum value if either the minimum or maximum value is excluded.
|
|
Returns a representation of this object as string.
Implements kddml.Core.Scalar.KDDMLScalarType. |