Inheritance diagram for kddml.Core.DataMining.AssociationRules.ItemFeatureManager:
Public Member Functions | |
boolean | isNumeric () |
boolean | isMissing () |
String | name () |
Double | value () throws IllegalArgumentException |
String | stringValue () throws IllegalArgumentException |
void | setValue (double value) throws IllegalArgumentException |
void | setValue (String value) throws IllegalArgumentException |
boolean | equals (ItemFeature o) |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Tests if the item feature is numeric.
Implemented in kddml.Core.DataMining.AssociationRules.ItemFeature. |
|
Tests if the item feature value is missing.
Implemented in kddml.Core.DataMining.AssociationRules.ItemFeature. |
|
Returns the name of this feature.
Implemented in kddml.Core.DataMining.AssociationRules.ItemFeature. |
|
Returns the value of this numeric feature or null if it is missing. Throws an exception if the feature is not numeric.
Implemented in kddml.Core.DataMining.AssociationRules.ItemFeature. |
|
Returns the value of this string feature of null if it is missing. Throws an exception if the feature is not string.
Implemented in kddml.Core.DataMining.AssociationRules.ItemFeature. |
|
Sets the numeric value to this numeric item feature. Throws an exception if the item is not numerical.
Implemented in kddml.Core.DataMining.AssociationRules.ItemFeature. |
|
Sets the value to this string item feature. Throws an exception if the item is numerical.
Implemented in kddml.Core.DataMining.AssociationRules.ItemFeature. |
|
Tests if two items are equal. Two items are equal if they have the same name.
Implemented in kddml.Core.DataMining.AssociationRules.ItemFeature. |