Inheritance diagram for kddml.Core.Scalar.RangeType:
Public Member Functions | |
RangeType (Class<?> class1, boolean is_min_included, boolean is_max_included) | |
Class | getElementClass () |
Object | convertValue (String value) |
abstract boolean | checkValue (String value) |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003 - 2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Constructs a Range object given the Class of the elements in the Range. Whether the minimum value and the maximum value are considered inclusive is specified via the isMinIncluded and isMaxIncluded variables.
|
|
Returns the Class of the elements of this Range.
Reimplemented in kddml.Core.Scalar.IntegerRangeType, and kddml.Core.Scalar.RealRangeType. |
|
Returns the value of the input argument as java.lang.Object. This depends on the type of the scalar. E.g. for a list of integer (such as 3, 5, 7), the method returns an int[], such as [3, 5, 7]. Returns null if the input value cannot be converted.
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.KDDMLScalarType. Implemented in kddml.Core.Scalar.IntegerRangeType, and kddml.Core.Scalar.RealRangeType. |