Inheritance diagram for kddml.Core.Scalar.EnumerationType:
Public Member Functions | |
EnumerationType (String[] list_of_values) | |
boolean | checkValue (String value) |
byte | getType () |
Object | convertValue (String value) |
String[] | getAdmittedValues () |
int | getNumAdmittedValues () |
String | toString () |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Constructor
|
|
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. |
|
Returns the type related to this class as value of KDDMLScalarTypeEnum.
Implements kddml.Core.Scalar.KDDMLScalarType. |
|
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. |
|
Returns the list of admitted values.
|
|
Returns the number of categories.
|
|
Returns a representation of this object as string.
Implements kddml.Core.Scalar.KDDMLScalarType. |