Inheritance diagram for kddml.Core.DataMining.DataFieldManager:
Public Member Functions | |
void | addEnumeratedValue (String value) throws MiningModelException |
boolean | equals (DataFieldManager data_field) |
String | getName () |
String | getDisplayedName () |
byte | getType () |
String | getStringType () |
void | setDisplayedName (String display_name) |
void | setType (byte type) |
String[] | getEnumeratedValues () |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Adds a new category to a discrete field. Throws an exception if the field is not discrete.
Implemented in kddml.Core.DataMining.DataField. |
|
Compares two data fields. Returns true two data fields are equal.
Implemented in kddml.Core.DataMining.DataField. |
|
Returns the name of the data field.
Implemented in kddml.Core.DataMining.DataField. |
|
Return the displayed name of the field.
Implemented in kddml.Core.DataMining.DataField. |
|
Return the type of the field. Can be categorical, ordinal, continuous. Categorical fields have the operator "=", ordinal fields have an additional "<", and continuous fields also have arithmetic operators.
Implemented in kddml.Core.DataMining.DataField. |
|
Returns a string representation of the type.
Implemented in kddml.Core.DataMining.DataField. |
|
Sets the displayed name of the field.
Implemented in kddml.Core.DataMining.DataField. |
|
Sets the type of the field.
Implemented in kddml.Core.DataMining.DataField. |
|
Returns enumerated values for a nominal attribute as array of strings. Return an empty array if the attribute is not discrete.
Implemented in kddml.Core.DataMining.DataField. |