Inheritance diagram for kddml.Operators.AlgorithmLoaderSettings:
Public Member Functions | |
String[] | listAttributes () |
Boolean | isRequired (String attribute_name) |
Boolean | isFixed (String attribute_name) |
String | getDefaultAttributeValue (String attribute_name) |
KDDMLScalarType | getAttributeType (String attribute_name) |
void | checkAttributes (Hashtable< String, KDDMLScalarManager > attributes) throws SettingsException |
Hashtable< String, KDDMLScalarManager > | refreshAttributes (Hashtable< String, KDDMLScalarManager > attributes) |
Static Public Attributes | |
static final String | ALG_NAME = "algorithm_name" |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Returns the list of attributes belonging to the operator specification.
Implements kddml.Operators.OperatorSettings. Reimplemented in kddml.Operators.DataMining.TREE_MINER_SETTINGS, kddml.Operators.Preprocessing.PP_NORMALIZATION_SETTINGS, kddml.Operators.Preprocessing.PP_NUMERIC_DISCRETIZATION_SETTINGS, and kddml.Operators.Preprocessing.PP_REWRITING_SETTINGS. |
|
Returns true if a given attribute is required in the operator specification. Returns false if the attribute is implied or fixed. Finally, the method returns null if the attribute name do not belong to the list of attributes returned by the method listAttributes().
Implements kddml.Operators.OperatorSettings. Reimplemented in kddml.Operators.DataMining.TREE_MINER_SETTINGS, kddml.Operators.Preprocessing.PP_NORMALIZATION_SETTINGS, kddml.Operators.Preprocessing.PP_NUMERIC_DISCRETIZATION_SETTINGS, and kddml.Operators.Preprocessing.PP_REWRITING_SETTINGS. |
|
Returns true if a given attribute is fixed (i.e. constant) in the operator specification. Returns false if the attribute is implied or required. Finally, the method returns null if the attribute name do not belong to the list of attributes returned by the method listAttributes().
Implements kddml.Operators.OperatorSettings. Reimplemented in kddml.Operators.DataMining.TREE_MINER_SETTINGS, kddml.Operators.Preprocessing.PP_NORMALIZATION_SETTINGS, kddml.Operators.Preprocessing.PP_NUMERIC_DISCRETIZATION_SETTINGS, and kddml.Operators.Preprocessing.PP_REWRITING_SETTINGS. |
|
Returns the default value related to a given input attribute. Returns null if the attribute do not admit a default value. An attribute can be given any legal value as a default. The attribute value is not required on each element in the document, but if it is not present, it will appear to be the specified default. If the attribute is implied and it is not included in the element, the operator assumes that this is the attribute value.
Implements kddml.Operators.OperatorSettings. Reimplemented in kddml.Operators.DataMining.TREE_MINER_SETTINGS, kddml.Operators.Preprocessing.PP_NORMALIZATION_SETTINGS, kddml.Operators.Preprocessing.PP_NUMERIC_DISCRETIZATION_SETTINGS, and kddml.Operators.Preprocessing.PP_REWRITING_SETTINGS. |
|
Returns the type related to a given input attribute. KDDML supports the attribute types as expressed by the class KDDMLScalarType. Returns null if the attribute name do no belong to the list of attributes returned by the method listAttributes().
Implements kddml.Operators.OperatorSettings. Reimplemented in kddml.Operators.DataMining.TREE_MINER_SETTINGS, kddml.Operators.Preprocessing.PP_NORMALIZATION_SETTINGS, kddml.Operators.Preprocessing.PP_NUMERIC_DISCRETIZATION_SETTINGS, and kddml.Operators.Preprocessing.PP_REWRITING_SETTINGS. |
|
Overloading of super.checkAttributes(Hashtable attributes).
Reimplemented from kddml.Operators.OperatorSettings. Reimplemented in kddml.Operators.Preprocessing.PP_REWRITING_SETTINGS. |
|
Overloading of super.refreshAttributes(Hashtable attributes).
Reimplemented from kddml.Operators.OperatorSettings. |
|
The algorithm name XML attribute. |